forked from docker-php/docker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.47 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
53
{
"name": "docker-php/docker-php",
"license": "MIT",
"type": "library",
"description": "A Docker PHP client",
"autoload": {
"psr-4": {
"Docker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Docker\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"docker-php/docker-php-api": "4.1.*",
"guzzlehttp/psr7": "^2.4",
"php-http/client-common": "^1.6",
"php-http/socket-client": "^2.1",
"php-http/message": "^1.0",
"symfony/filesystem": "^2.3 || ^3.0 || ^4.0",
"symfony/process": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"suggest": {
"php-http/httplug-bundle": "For integration with Symfony",
"amphp/artax": "To use the async api"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "2.8.1",
"amphp/artax": "^3.0",
"amphp/socket": "^0.10.5"
},
"conflict": {
"amphp/socket": "<0.10.5",
"amphp/artax": "<3.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
"lint-fix": "vendor/bin/php-cs-fixer fix --verbose"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}