forked from gravure/laravel-json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 902 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
{
"name": "gravure/laravel-json-api",
"description": "Native integration of the Json API specification.",
"license": "MIT",
"autoload": {
"psr-4": {
"Gravure\\Api\\": "src/"
}
},
"require": {
"php": ">=7.1.0",
"tobscure/json-api": "^0.3.0",
"illuminate/routing": "5.4.* || 5.5.*",
"illuminate/database": "5.4.* || 5.5.*",
"spatie/laravel-json-api-paginate": "1.*"
},
"autoload-dev": {
"psr-4": {
"Gravure\\Api\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "^6.0",
"orchestra/database": "^v3.4.0-BETA1"
},
"authors": [
{
"name": "Daniël Klabbers",
"email": "[email protected]",
"homepage": "https://github.com/luceos"
}
]
}