php-json-rpc/composer.json

20 lines
423 B
JSON
Raw Normal View History

2019-01-04 03:59:05 +00:00
{
"name": "paidian/json-rpc",
2019-01-05 02:53:06 +00:00
"type": "library",
2019-01-04 03:59:05 +00:00
"description": "json rpc server/client.",
"require": {
2019-01-05 03:25:30 +00:00
"guzzlehttp/guzzle": "^6.3",
2019-01-05 03:36:46 +00:00
"illuminate/support": "^5.5",
2019-01-10 03:49:10 +00:00
"illuminate/http": "^5.5",
2019-01-14 07:47:37 +00:00
"monolog/monolog": "^1.24",
"itxq/api-doc-php": "^1.1"
2019-01-04 03:59:05 +00:00
},
"autoload": {
"psr-4": {
"JsonRpc\\": "src/"
}
2019-01-14 07:30:04 +00:00
},
"require-dev": {
2019-01-04 03:59:05 +00:00
}
2019-01-05 03:25:30 +00:00
}