-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (34 loc) · 912 Bytes
/
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
{
"name": "Saiks24/json-rpc-php",
"description": "Library to work with RPC-JSON Protocol",
"homepage": "https://github.com/saiks24/json-rpc-php",
"authors": [
{
"name": "Saiks24",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "Apache-2",
"require": {
"psr/http-message":"*",
"php": ">=7.0.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit":"~6.5.0",
"phpunit/php-code-coverage": "^5.3"
},
"autoload": {
"psr-4": {
"Saiks24\\Rpc\\":"src/",
"Saiks24\\Rpc\\Builders\\":"src/Builders/",
"Saiks24\\Rpc\\Request\\":"src/Request/",
"Saiks24\\Rpc\\Response\\":"src/Response/",
"Saiks24\\Rpc\\Exceptions\\":"src/Response/",
"Saiks24\\Rpc\\Client\\":"src/Client/",
"Saiks24\\Rpc\\Server\\":"src/Server/",
"Saiks24\\Rpc\\Senders\\":"src/Senders/"
}
}
}