-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.27 KB
/
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": "adgoal/jsonrpc-http-server-openapi-doc-sdk",
"description": "SDK to generate Http JSON-RPC server documentation for OpenAPI v3.0.0",
"license": "MIT",
"type": "library",
"support": {
"issues": "https://github.com/adgoal/php-jsonrpc-http-server-openapi-doc-sdk/issues"
},
"authors": [
{
"name": "Yoanm",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Yoanm\\JsonRpcHttpServerOpenAPIDoc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Functional\\BehatContext\\": "features/bootstrap"
}
},
"suggest": {
"adgoal/symfony-jsonrpc-http-server-openapi-doc": "Symfony bundle for easy JSON-RPC server OpenAPI 3.0.0 documentation",
"adgoal/symfony-jsonrpc-http-server-doc": "Symfony bundle for easy JSON-RPC server documentation",
"yoanm/symfony-jsonrpc-http-server": "Symfony Bundle to convert an HTTP json-rpc request into HTTP json-rpc response"
},
"require": {
"php": ">=7.3",
"yoanm/jsonrpc-server-doc-sdk": "^0.3"
},
"require-dev": {
"ext-json": "*",
"behat/behat": "~3.0",
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^7.0 || ^8.0",
"yoanm/php-unit-extended": "~1.0"
}
}