-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
49 lines (49 loc) · 1.36 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
{
"name": "transip/transip-api-php",
"description": "TransIP Rest API Library",
"license": "Apache-2.0",
"authors": [
{
"name": "TransIP",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2.0|^8.0",
"ext-json": "*",
"ext-openssl": "*",
"symfony/cache": "^3.4|^4.4|^5.0|^6.0|^7.0",
"psr/cache": "^1.0.1|^3.0",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14",
"guzzlehttp/guzzle": "^6.5|^7.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-http/client-implementation": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1.5",
"nyholm/psr7": "^1.5",
"phpunit/phpunit": "^9.5",
"php-http/guzzle7-adapter": "^1.0"
},
"suggest": {
"php-http/guzzle7-adapter": "Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services."
},
"autoload": {
"psr-4": {
"Transip\\Api\\Library\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Transip\\Api\\Library\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}