forked from bankiru/jsonrpc-server-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 968 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
{
"name": "bankiru/jsonrpc-server-bundle",
"description": "JSON-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/http-kernel": "~2.7 || ~3.0",
"scaytrase/json-rpc-client": "~1.0",
"bankiru/rpc-server-bundle": "~1.1",
"jms/serializer-bundle": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8 || ~5.1",
"symfony/browser-kit": "~2.7 || ~3.0",
"symfony/translation": "~2.7 || ~3.0",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/orm": "~2.3"
},
"suggest": {
"doctrine/doctrine-bundle": "For relations handler",
"doctrine/orm": "For relations handler"
},
"autoload": {
"psr-4": {
"Bankiru\\Api\\JsonRpc\\": "./"
}
},
"autoload-dev": {
"files": [
"bootstrap.php"
]
}
}