forked from Art4/json-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 881 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
{
"name": "art4/json-api-client",
"type": "library",
"description": "JSON API client",
"homepage": "https://github.com/Art4/json-api-client",
"keywords": ["json", "api", "json-api", "client", "reader", "validator", "parser"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Artur Weigandt",
"email": "art4@wlabs.de",
"homepage": "https://wlabs.de"
}
],
"require": {
"php": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Art4\\JsonApiClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Art4\\JsonApiClient\\Tests\\": "tests"
}
},
"config": {
"//platform": {
"php": "7.2"
},
"sort-packages": true
}
}