-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.51 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mklocke/hexagonal-playground",
"type": "project",
"version": "dev-latest",
"authors": [
{
"name": "Marius Klocke",
"email": "marius.klocke@gmail.com"
}
],
"autoload": {
"psr-4": {
"HexagonalPlayground\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HexagonalPlayground\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": "^8.1",
"ext-apcu": "*",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-redis": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*",
"doctrine/dbal": "^4.0.0",
"doctrine/migrations": "^3.7.2",
"doctrine/orm": "~3.3.0",
"firebase/php-jwt": "^6.10",
"middlewares/trailing-slash": "^2.0.1",
"nyholm/psr7": "^1.8.1",
"nyholm/psr7-server": "^1.1.0",
"php-di/php-di": "^7.0.6",
"psr/log": "^3.0.0",
"ramsey/uuid": "^4.7.5",
"slim/slim": "^4.12.0",
"spiral/roadrunner-http": "^3.4",
"symfony/console": "^7.0.2",
"symfony/mailer": "^7.0.2",
"web-auth/webauthn-lib": "^4.7.8",
"webonyx/graphql-php": "^14.11.10"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"phpunit/phpunit": "^11.1.1",
"qossmic/deptrac": "^2.0.0"
}
}