-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.53 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
{
"name": "prsw/swarm-ingress",
"description": "Docker Swarm Ingress Controller",
"type": "project",
"require": {
"php": "^8.3",
"ext-openssl": "*",
"ext-pcntl": "*",
"symfony/console": "^7.2",
"prsw/docker-php": "^0.2.1",
"symfony/dotenv": "^7.2",
"twig/twig": "^3.0",
"php-di/php-di": "^7.0",
"symfony/process": "^7.2",
"acmephp/core": "^2.1",
"amphp/file": "^3.2",
"amphp/process": "^2.0",
"amphp/parallel": "^2.3",
"amphp/sync": "^2.3",
"amphp/http-client-guzzle-adapter": "^1.1",
"amphp/log": "^2.0",
"azjezz/psl": "^3.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"PRSW\\Ingress\\": "src/",
"PRSW\\Ingress\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Prasetyo Wicaksono",
"email": "[email protected]"
}
],
"scripts": {
"cs": ["./vendor/bin/php-cs-fixer check --diff"],
"cs:fix": ["./vendor/bin/php-cs-fixer fix src"],
"phpstan": ["./vendor/bin/phpstan -vvv --memory-limit=256M"],
"ci": ["@cs", "@phpstan"]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpunit/phpunit": "^11",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65",
"dg/bypass-finals": "^1.8"
}
}