-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.2 KB
/
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
41
42
43
{
"name": "cfxmarkets/php-jsonapi-transport",
"description": "This package implements the JSON-API transport protocol specification (i.e., it enforces certain request and response parameters).",
"keywords": [ "jsonapi", "json-api", "json api", "rest", "api" ],
"license": "MIT",
"authors": [
{
"name": "CFX Markets and Contributors",
"homepage": "https://github.com/cfxmarkets/php-jsonapi-transport/graphs/contributors"
}
],
"require" : {
"php" : ">=5.4",
"guzzlehttp/psr7": "~1.4.4",
"cfxmarkets/php-jsonapi-objects": "^1.4.0 || ^2.0.0"
},
"require-dev" : {
"phpunit/phpunit" : ">=4.8.0"
},
"autoload" : {
"psr-4" : {
"CFX\\JsonApi\\" : "src/"
},
"files": [
"src/Exceptions.php"
]
},
"repositories" : [
{
"type" : "git",
"url" : "https://github.com/cfxmarkets/php-jsonapi-objects.git"
},
{
"type": "git",
"url": "https://github.com/kael-shipman/psr7.git"
}
],
"extra": {
"branch-alias": {
"dev-v0.5.x" : "v0.5.x-dev"
}
}
}