-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.17 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
{
"name": "transip/transip-api-symfony",
"description": "TransIP API client integration for Symfony",
"type": "symfony-bundle",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Transip\\Bundle\\RestApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Transip\\Bundle\\RestApi\\Tests\\": "Tests"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"transip/transip-api-php": "^6.25",
"psr/http-client": "^1.0",
"nyholm/psr7": "^1.4",
"php-http/httplug": "^1.1 || ^2.0",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.6 || ^2.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.4 || ^7.0",
"symfony/config": "^4.4 || ^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"symfony/http-client": "^4.4 || ^5.4 || ^6.4 || ^7.0",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^0.12.99",
"phpunit/phpunit": "^9.5",
"dg/bypass-finals": "^1.3"
}
}