-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.03 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
{
"name" : "cfxmarkets/php-persistence",
"description" : "A library providing abstract implementations of various persistence layers based on JSON API relational resource concepts.",
"type" : "library",
"keywords" : [ "persistence", "datasource", "datacontext", "context", "database" ],
"license" : "MIT",
"authors" : [
{
"name": "CFX and contributors",
"homepage": "https://github.com/cfxmarkets/php-persistence/graphs/contributors"
}
],
"require" : {
"php" : ">=5.5",
"kael-shipman/php-std-traits": "^7.0.0",
"cfxmarkets/php-jsonapi-objects": "^1.4.5",
"guzzlehttp/guzzle" : "^6.3.0",
"ramsey/uuid": "^3.8.0",
"moontoast/math": "^1.1.0",
"psr/log": "^1.0.0"
},
"require-dev" : {
"phpunit/phpunit" : ">=4.8.0"
},
"autoload" : {
"psr-4" : {
"CFX\\Persistence\\" : "src/"
},
"files" : [
"src/Exceptions.php"
]
},
"repositories": [
]
}