-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "yoanm/jsonrpc-server-doc-sdk",
"description": "SDK to generate (Http) JSON-RPC server documentation",
"license": "MIT",
"type": "library",
"support": {
"issues": "https://github.com/yoanm/php-jsonrpc-server-doc-sdk/issues"
},
"authors": [
{
"name": "Yoanm",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Yoanm\\JsonRpcServerDoc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Functional\\BehatContext\\": "features/bootstrap"
}
},
"suggest": {
"yoanm/jsonrpc-params-symfony-constraint-doc-sdk": "SDK to generate JSON-RPC documentation from symfony constraint",
"yoanm/jsonrpc-http-server-swagger-doc-sdk": "SDK to generate Http JSON-RPC server documentation for Swagger v2.0",
"yoanm/jsonrpc-http-server-openapi-doc-sdk": "SDK to generate Http JSON-RPC server documentation for OpenAPI v3.0.0",
"yoanm/jsonrpc-server-sdk": "Server SDK to convert a json-rpc request string into json-rpc response string",
"yoanm/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": "^8.0"
},
"require-dev": {
"ext-json": "*",
"behat/behat": "^3.9.0",
"dvdoug/behat-code-coverage": "^5.0",
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.5",
"yoanm/php-unit-extended": "^2.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}