This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.38 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.38 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
49
50
51
52
53
54
55
56
57
58
{
"name": "cloudcreativity/json-api",
"description": "Framework agnostic JSON API serialization and deserialization.",
"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.4|^7.0",
"cloudcreativity/utils-object": "^1.0",
"neomerx/json-api": "^1.0.3"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"phpunit/phpunit": "^5.7"
},
"suggest": {
"guzzlehttp/guzzle": "Guzzle v6 required to use the JSON API client."
},
"autoload": {
"psr-4": {
"CloudCreativity\\JsonApi\\": "src/"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"CloudCreativity\\JsonApi\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}