-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.33 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
{
"name": "theaentmachine/aent-php",
"homepage" : "https://github.com/theaentmachine/aent-php",
"description": "An aent to install a PHP container",
"type" : "aent",
"license" : "MIT",
"authors" : [
{
"name" : "David Négrier",
"email" : "d.negrier@thecodingmachine.com",
"homepage" : "https://thecodingmachine.io"
},
{
"name": "Julien Neuhart",
"email": "j.neuhart@thecodingmachine.com",
"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.3.1",
"phpstan/phpstan": "^0.10.2",
"thecodingmachine/phpstan-strict-rules": "^0.10.3",
"thecodingmachine/phpstan-safe-rule": "^0.1.0@dev"
},
"autoload" : {
"psr-4" : {
"TheAentMachine\\AentPhp\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"TheAentMachine\\AentPhp\\" : "tests/"
}
},
"scripts": {
"cs-fix": "phpcbf",
"cs-check": "phpcs",
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
"phpunit": "phpunit --configuration phpunit.xml.dist",
"ci": [ "@cs-check", "@phpstan", "@phpunit" ]
},
"minimum-stability": "dev",
"prefer-stable": true
}