-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.1 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
{
"name": "simpod/json-rpc",
"description": "PHP JSON-RPC 2.0 PSR-7 Message factory",
"keywords": ["http", "json", "json-rpc", "jsonrpc", "ring", "rpc"],
"homepage": "https://github.com/simpod/jsonrpc",
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"SimPod\\JsonRpc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimPod\\JsonRpc\\": "tests"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"cdn77/coding-standard": "^7.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^2.0.0",
"phpstan/phpstan-phpunit": "^2.0.0",
"phpstan/phpstan-strict-rules": "^2.0.0",
"phpunit/phpunit": "^11.0",
"psr-mock/http": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}