-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 2.21 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
55
56
57
58
59
60
61
62
63
{
"name": "yoanm/symfony-jsonrpc-http-server-doc",
"description": "Symfony bundle for easy JSON-RPC server documentation",
"license": "MIT",
"type": "library",
"support": {
"issues": "https://github.com/yoanm/symfony-jsonrpc-http-server-doc/issues"
},
"authors": [
{
"name": "Yoanm",
"email": "yoanm@users.noreply.github.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Yoanm\\SymfonyJsonRpcHttpServerDoc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Functional\\BehatContext\\": "features/bootstrap",
"DemoApp\\": "features/demo_app/src"
}
},
"suggest": {
"yoanm/symfony-jsonrpc-http-server": "Symfony Bundle to convert an HTTP json-rpc request into HTTP json-rpc response",
"yoanm/symfony-jsonrpc-params-sf-constraints-doc": "Symfony bundle for easy Symfony constraints to JSON-RPC documentation transformation",
"yoanm/symfony-jsonrpc-http-server-openapi-doc": "Symfony bundle for easy JSON-RPC server OpenAPI 3.0.0 documentation",
"yoanm/symfony-jsonrpc-http-server-swagger-doc": "Symfony bundle for easy JSON-RPC server Swagger 2.0 documentation"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0",
"yoanm/jsonrpc-server-doc-sdk": "^0.3 || ^1.0",
"yoanm/jsonrpc-server-sdk": "^3.3",
"yoanm/symfony-jsonrpc-http-server": "^3.3"
},
"require-dev": {
"behat/behat": "^3.9.0",
"dvdoug/behat-code-coverage": "^5.0",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/php-code-coverage": "^9.2.4",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/routing": "^4.4 || ^5.4 || ^6.0",
"yoanm/php-unit-extended": "^2.0.2"
},
"config": {
"sort-packages": true
}
}