-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.77 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
64
65
66
67
68
69
70
71
{
"name": "mops1k/json-rpc-bundle",
"description": "This bundle provide an easy way to implement json-rpc server with fully specification supporting.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"symfony-bundle",
"bundle",
"json",
"rpc",
"jsonrpc"
],
"authors": [
{
"name": "Aleksandr Kvintilyanov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"symfony/validator": "^6.4 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"laravel/pint": "1.13.11",
"nelmio/api-doc-bundle": "4.29.0",
"php-openapi/openapi": "^2.0",
"phpunit/phpunit": "10.5.21",
"psalm/plugin-phpunit": "0.19.0",
"psalm/plugin-symfony": "5.2.3",
"vimeo/psalm": "5.16.0",
"zircote/swagger-php": "4.10.6"
},
"suggest": {
"nelmio/api-doc-bundle": "^4.29"
},
"autoload": {
"psr-4": {
"JsonRpcBundle\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"JsonRpcBundle\\Tests\\": "./tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}