-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.19 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
{
"name": "runet-id/api-client",
"description": "RUNET-ID API Client",
"type": "library",
"keywords": ["RUNET-ID", "api-client", "psr7", "httplug"],
"license": "MIT",
"authors": [
{"name": "Valentin Udaltsov", "email": "udaltsov@ruvents.com"}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/message": "^1.6"
},
"require-dev": {
"guzzlehttp/psr7": "^1.0",
"php-http/discovery": "^1.3",
"php-http/mock-client": "^1.1",
"php-mock/php-mock": "^1.0 || ^2.0",
"phpdocumentor/reflection-docblock": "^3.2 || ^4.0 || ^5.0",
"symfony/phpunit-bridge": "^4.2.3"
},
"autoload": {
"psr-4": {
"RunetId\\Client\\": "src/"
},
"files": [
"constants.php"
]
},
"autoload-dev": {
"psr-4": {
"RunetId\\Client\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}