forked from docker-php/docker-php
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
88 lines (88 loc) · 2.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "beluga-php/docker-php",
"description": "A Docker PHP client",
"license": "MIT",
"type": "library",
"funding": [
{
"type": "github",
"url": "https://github.com/flavioheleno"
}
],
"require": {
"php": ">=8.1",
"beluga-php/docker-php-api": "7.1.43.0",
"nyholm/psr7": "^1.8",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.19",
"plesk/socket-client": "^2.1",
"psr/http-message": "^2.0",
"symfony/filesystem": "^6.3 || ^7.0",
"symfony/process": "^6.3 || ^7.0",
"symfony/serializer": "^6.3 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.8",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"psy/psysh": "^0.12",
"roave/security-advisories": "dev-latest"
},
"conflict": {
"docker-php/docker-php": "*",
"nikic/php-parser": "<4.13",
"php-http/message": "<1.15"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Docker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Docker\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": false
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"1.41": "1.41.x-dev",
"1.42": "1.42.x-dev",
"dev-master": "1.43.x-dev"
}
},
"scripts": {
"console": "vendor/bin/psysh",
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
"php-cs-fixer-fix": "vendor/bin/php-cs-fixer fix --verbose",
"phpstan": "vendor/bin/phpstan analyse --level 2 src",
"phpunit": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --whitelist=./src/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation",
"test": [
"@lint",
"@phpunit"
],
"test-ci": "vendor/bin/phpunit ./tests/ --disallow-test-output --process-isolation",
"test-coverage": "vendor/bin/phpunit ./tests/ --whitelist=./src/ --coverage-clover=clover.xml"
},
"scripts-descriptions": {
"console": "Runs PsySH Console",
"lint": "Runs complete codebase lint testing",
"phpunit": "Runs library test suite",
"test": "Runs all tests",
"test-ci": "Runs library test suite (for continuous integration)",
"test-coverage": "Runs test-coverage analysis"
}
}