-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
63 lines (63 loc) · 1.75 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
59
60
61
62
63
{
"name": "free-elephants/json-api-toolkit",
"description": "Tools for building specification first json:api / swagger integrated APIs",
"license": "BSD-2-Clause",
"authors": [
{
"name": "samizdam",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"ext-intl": "*",
"ext-json": "*",
"devizzent/cebe-php-openapi": "^1.0",
"doctrine/persistence": "^2.0|^3.0",
"fig/http-message-util": "^1.0",
"free-elephants/i18n": "^0.0.1",
"laminas/laminas-stratigility": "^3.2",
"laravel-json-api/neomerx-json-api": "^5.0.2",
"league/openapi-psr7-validator": "0.19 - 0.22",
"nette/php-generator": "^3.4",
"nikic/fast-route": "^1.3",
"psr/cache": "^1|^2|^3",
"psr/container": "^1|^2",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"rakit/validation": "^1.2",
"ramsey/uuid": "^3.9.7|^4.0"
},
"require-dev": {
"helmich/phpunit-psr7-assert": "^4",
"nyholm/psr7": "^1.2",
"phpunit/phpunit": "^10.5.38|^11.0"
},
"suggest": {
"doctrine/orm": "^2.7",
"free-elephants/di": "*",
"laminas/laminas-httphandlerrunner": "*",
"nyholm/psr7": "^1.2"
},
"conflict": {
"neomerx/json-api": "*"
},
"autoload": {
"psr-4": {
"FreeElephants\\": [
"src/FreeElephants"
]
}
},
"autoload-dev": {
"psr-4": {
"FreeElephants\\": [
"tests/FreeElephants"
]
}
}
}