forked from FreeElephants/json-api-php-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.55 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
{
"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": "*",
"cebe/php-openapi": "^1.4",
"fig/http-message-util": "^1.1",
"free-elephants/i18n": "^0.0.1",
"laminas/laminas-stratigility": "^3.2",
"league/openapi-psr7-validator": "0.14",
"neomerx/json-api": "^4.0",
"nette/php-generator": "^3.4",
"nikic/fast-route": "^1.3",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"rakit/validation": "^1.2",
"ramsey/uuid": "^3.0|^4.0"
},
"require-dev": {
"doctrine/orm": "^2.7",
"helmich/phpunit-psr7-assert": "dev-master#c7c75e8",
"nyholm/psr7": "^1.2",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"doctrine/orm": "^2.7",
"free-elephants/di": "*",
"laminas/laminas-httphandlerrunner": "*"
},
"autoload": {
"psr-4": {
"FreeElephants\\": [
"src/FreeElephants"
]
}
},
"autoload-dev": {
"psr-4": {
"FreeElephants\\": [
"tests/FreeElephants"
]
}
}
}