-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1009 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
37
38
39
40
41
42
43
{
"name": "bankiru/doctrine-api-client",
"description": "Doctrine-faced RPC API Client",
"authors": [
{
"name": "Pavel Batanov",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "~5.5|~7.0",
"psr/cache": "~1.0",
"psr/log": "~1.0",
"scaytrase/rpc-common": "~1.2",
"doctrine/common": "~2.5",
"doctrine/collections": "~1.3",
"symfony/options-resolver": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/property-access": "~2.3|~3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 | ^5.4 | ^6.0",
"symfony/http-kernel": "~2.3|~3.0"
},
"suggest": {
"psr/cache-implementation": "For entity cache support",
"psr/log-implementation": "For logging support"
},
"autoload": {
"psr-4": {
"Bankiru\\Api\\Doctrine\\": "./"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-1.x": "1.x-dev"
}
},
"abandoned": true
}