forked from transip/transip-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.48 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "transip/transip-api-php",
"description": "TransIP Rest API Library",
"license": "Apache-2.0",
"authors": [
{
"name": "TransIP",
"email": "support@transip.eu"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-openssl": "*",
"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",
"symfony/cache": "^3.4 || ^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.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.",
"symfony/cache": "Symfony Cache component is used to provide caching capabilities."
},
"autoload": {
"psr-4": {
"Transip\\Api\\Library\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Transip\\Api\\Library\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}