-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.34 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
{
"name": "bytic/rest-client",
"license": "MIT",
"description": "bytic rest client",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"ByTIC\\RestClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ByTIC\\RestClient\\Tests\\": "tests/src",
"ByTIC\\RestClient\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^7.4|^8.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-client": "^1.0|^2.0",
"psr/http-factory": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"php-http/client-common": "^1.9|^2.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.7|^2.0",
"symfony/serializer": "^4.0|^5.0|^6.0"
},
"require-dev": {
"php-http/guzzle6-adapter": "^2.0",
"php-http/mock-client": "^1.0",
"http-interop/http-factory-guzzle": "^1.0",
"bytic/phpqatools": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bytic/phpqatools": true,
"php-http/discovery": true
}
}
}