-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (36 loc) · 982 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
{
"name": "cfxmarkets/php-application",
"description": "This package provides the base application classes that are commonly used in CFX applications.",
"keywords": [ "cfx", "api", "brokerage", "exchange", "framework" ],
"license": "MIT",
"authors": [
{
"name": "CFX and contributors",
"homepage": "https://github.com/cfxmarkets/php-api-service/graphs/contributors"
}
],
"require" : {
"php" : ">=7.1.0",
"kael-shipman/php-std-traits": "^7.0.0",
"psr/http-message": "~1.0",
"psr/log": "^1.0.0",
"guzzlehttp/psr7": "^1.4.2"
},
"require-dev" : {
"phpunit/phpunit" : "~4.8.0",
"guzzlehttp/guzzle": "^6.0"
},
"autoload" : {
"psr-4" : {
"CFX\\" : "src/"
},
"files": [
"src/Exceptions.php"
]
},
"extra": {
"branch-alias": {
"dev-v0.x": "0.x-dev"
}
}
}