-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.31 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
{
"name": "kreemer/docker-php",
"description": "A Docker client in PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "kreemer",
"email": "kreemer@me.com"
}
],
"autoload": {
"psr-4": {
"Docker\\": "src/",
"Docker\\API\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"Docker\\Tests\\": "tests/"
}
},
"require-dev": {
"jane-php/open-api-2": "~v6.1.1",
"friendsofphp/php-cs-fixer": "^2.18",
"php-http/socket-client": "^2.1.0",
"phpstan/phpstan": "^0.12.85"
},
"require": {
"php": "^7.4",
"jane-php/open-api-runtime": "~v6.1.1",
"phpunit/phpunit": "^9.5",
"guzzlehttp/psr7": "^1.8",
"psr/http-client-implementation": "^1.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no",
"generate": [
"vendor/bin/jane-openapi generate",
"composer patch"
],
"patch": "patch -N -r - -p1 < patches/NetworkSettingsNormalizer.php.patch"
},
"minimum-stability": "stable"
}