-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.89 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
{
"name": "yoanm/symfony-jsonrpc-params-validator",
"description": "Symfony bundle for easy JSON-RPC params validation",
"license": "MIT",
"type": "library",
"support": {
"issues": "https://github.com/yoanm/symfony-jsonrpc-params-validator/issues"
},
"authors": [
{
"name": "Yoanm",
"email": "yoanm@users.noreply.github.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Yoanm\\SymfonyJsonRpcParamsValidator\\": "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": "To generate payload documentation from validation constraints"
},
"require": {
"php": "^8.0",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0",
"yoanm/jsonrpc-params-symfony-validator-sdk": "^2.0"
},
"require-dev": {
"ext-json": "*",
"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/http-foundation": "^4.4 || ^5.4 || ^6.0",
"symfony/routing": "^4.4 || ^5.4 || ^6.0",
"yoanm/jsonrpc-server-sdk": "^3.0",
"yoanm/php-unit-extended": "^2.0.2",
"yoanm/symfony-jsonrpc-http-server": "^3.0"
},
"config": {
"sort-packages": true
}
}