-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 1.13 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
44
{
"name": "cfxmarkets/php-public-models",
"description": "This package provides all of CFX's public data objects.",
"keywords": [ "cfx", "api", "brokerage", "exchange", "framework", "data objects" ],
"license": "MIT",
"authors": [
{
"name": "CFX and contributors",
"homepage": "https://github.com/cfxmarkets/php-api-service/graphs/contributors"
}
],
"require" : {
"php" : ">=5.4.0",
"cfxmarkets/php-jsonapi-objects": "^1.4.10 | ^2.0.0",
"cfxmarkets/php-persistence": "^0.4.3 || ^0.3.3 || ^0.5.0 || ^0.6.0"
},
"require-dev" : {
"phpunit/phpunit" : ">=4.8.0",
"guzzlehttp/guzzle": "^6.0.0"
},
"autoload" : {
"psr-4" : {
"CFX\\" : "src/"
},
"files": [
]
},
"autoload-dev" : {
"psr-4" : {
"CFX\\" : "tests/"
}
},
"repositories" : [
{
"type": "git",
"url": "https://github.com/kael-shipman/psr7.git"
}
],
"extra": {
"branch-alias": {
"dev-dev-releases": "v1.18.x-dev"
}
}
}