-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 1.01 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
{
"name": "amphp/rpc",
"description": "Remote procedure calls for PHP based on Amp.",
"type": "library",
"require": {
"php": ">=8.1",
"amphp/amp": "^3",
"amphp/byte-stream": "^2",
"amphp/http-server": "^3",
"amphp/http-client": "^5",
"amphp/serialization": "^1",
"amphp/sync": "^2",
"friendsofphp/proxy-manager-lts": "^1.0.17"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"amphp/log": "^2",
"amphp/phpunit-util": "^3",
"amphp/php-cs-fixer-config": "^2"
},
"license": "MIT",
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"autoload": {
"psr-4": {
"Amp\\Rpc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Amp\\Rpc\\": "test",
"Amp\\Rpc\\Examples\\Basic\\": "examples/src"
},
"files": [
"examples/src/functions.php"
]
}
}