-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.4 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
{
"name": "theaentmachine/aent-traefik",
"homepage": "https://github.com/theaentmachine/aent-traefik",
"description": "An aent that installs and manages Traefik",
"type": "aent",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]",
"homepage": "https://github.com/moufmouf"
},
{
"name" : "Jindun Shao",
"email" : "[email protected]",
"homepage" : "https://github.com/JinTotonic"
},
{
"name" : "Julien Neuhart",
"email" : "[email protected]",
"homepage" : "https://github.com/gulien"
}
],
"require": {
"php": ">=7.1",
"theaentmachine/aent-console": "1.0.x-dev",
"thecodingmachine/safe": "^0.1.1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.10.1",
"thecodingmachine/phpstan-strict-rules": "^0.10.2",
"thecodingmachine/phpstan-safe-rule": "^0.1.0@dev"
},
"autoload": {
"psr-4": {
"TheAentMachine\\AentTraefik\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheAentMachine\\AentTraefik\\": "tests/"
}
},
"scripts": {
"cs-fix": "phpcbf",
"cs-check": "phpcs",
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
"phpunit": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}