forked from cloudcreativity/json-api-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "cloudcreativity/json-api-testing",
"description": "PHPUnit test helpers to check JSON API documents.",
"keywords": [
"jsonapi.org",
"json-api",
"jsonapi",
"cloudcreativity",
"json",
"api"
],
"homepage": "https://github.com/cloudcreativity/json-api",
"support": {
"issues": "https://github.com/cloudcreativity/json-api/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Cloud Creativity Ltd",
"email": "info@cloudcreativity.co.uk"
}
],
"require": {
"php": "^5.6|^7.0",
"cloudcreativity/utils-object": "^1.0",
"phpunit/phpunit": "^5.7|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"CloudCreativity\\JsonApi\\Testing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CloudCreativity\\JsonApi\\Testing\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.4.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}