-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1015 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
{
"name": "bankiru/rpc-server-bundle",
"description": "RPC server symfony bundle",
"minimum-stability": "stable",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Pavel Batanov",
"email": "[email protected]"
}
],
"require": {
"php": "~5.5 || ~7.0",
"symfony/config": "~2.7 || ~3.0",
"symfony/http-kernel": "~2.7 || ~3.0",
"symfony/yaml": "~2.7 || ~3.0",
"symfony/dependency-injection": "~2.7 || ~3.0",
"doctrine/annotations": "~1.2",
"scaytrase/rpc-common": "~1.0"
},
"require-dev": {
"symfony/console": "~2.7 || ~3.0",
"symfony/routing": "~2.7 || ~3.0",
"symfony/framework-bundle": "~2.7 || ~3.0",
"phpunit/phpunit": "~4.8 || ~5.1",
"symfony/browser-kit": "~2.7 || ~3.0"
},
"suggest": {
"symfony/console": "For using debug console command",
"nelmio/api-doc-bundle": "For RpcApiDoc extraction"
},
"autoload": {
"psr-4": {
"Bankiru\\Api\\Rpc\\": "./"
}
},
"abandoned": true
}