forked from docker-php/docker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.26 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "romantomchak/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.2",
"guzzlehttp/psr7": "^1.6",
"php-http/client-common": "^2.3",
"php-http/socket-client": "2.0.0-beta1",
"php-http/message": "^1.9",
"symfony/filesystem": "^4.4.9 || ^5.0",
"symfony/process": "^4.4.11 || ^5.0",
"romantomchak/docker-php-api": "v6.1.40.1"
},
"suggest": {
"php-http/httplug-bundle": "For integration with Symfony"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"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": "3.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "beta"
}