-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.42 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-sdk",
"description": "Server SDK to convert a json-rpc request string into json-rpc response string",
"license": "MIT",
"type": "library",
"support": {
"issues": "https://github.com/yoanm/php-jsonrpc-server-sdk/issues"
},
"authors": [
{
"name": "Yoanm",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Yoanm\\JsonRpcServer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Functional\\BehatContext\\": "features/bootstrap",
"DemoApp\\": "features/demo_app/src"
}
},
"suggest": {
"yoanm/jsonrpc-params-symfony-validator-sdk": "Compatible params validator",
"yoanm/jsonrpc-server-doc-sdk": "Create documentation for your server",
"yoanm/symfony-jsonrpc-http-server": "JSON-RPC HTTP Symfony server Bundle"
},
"require": {
"php": "^8.0",
"ext-json": "*"
},
"require-dev": {
"behat/behat": "^3.9.0",
"coduo/php-matcher": "^6.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/jsonrpc-server-doc-sdk": "^0.3 || ^1.0",
"yoanm/php-unit-extended": "^2.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}