forked from mnugter/jsonrpc-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
30 lines (29 loc) · 893 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
{
"name":"wa72/jsonrpc-bundle",
"description":"JSON-RPC server for Symfony: exposes services registered in the service container as JSON-RPC webservices",
"keywords":["json", "rpc", "jsonrpc", "json-rpc", "webservice", "symfony", "symfony-bundle" ],
"homepage":"http://github.com/wasinger/jsonrpc-bundle",
"license":"MIT",
"type": "symfony-bundle",
"authors":[
{
"name":"Christoph Singer",
"email":"singer@webagentur72.de",
"homepage":"http://www.webagentur72.de"
}
],
"require":{
"php":">=5.4",
"symfony/framework-bundle":"^2.7|^3|^4",
"jms/serializer-bundle":"^1.1|^2|^3"
},
"require-dev": {
"phpunit/phpunit": "^4|^5|^6|^7"
},
"autoload":{
"psr-0":{
"Wa72\\JsonRpcBundle":""
}
},
"target-dir": "Wa72/JsonRpcBundle"
}