-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
40 lines (40 loc) · 852 Bytes
/
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
{
"name": "wollanup/php-api-rest",
"license": "MIT",
"description": "PHP API REST",
"type": "library",
"authors": [
{
"name": "Steve Mareigner",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Eukles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Eukles\\": "tests/",
"Eukles\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"crell/api-problem": "^2.0",
"akrabat/rka-content-type-renderer": "^0.7.3",
"vlucas/phpdotenv": "^2.4",
"adbario/php-dot-notation": "^2.0",
"zendframework/zend-permissions-acl": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"propel/propel": "~2.0@dev",
"slim/slim": "3.*"
},
"conflict": {
"wollanup/php-api-rest-swagger": "<0.1.6"
}
}