-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
69 lines (69 loc) · 1.72 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
{
"name": "theaentmachine/aent-console",
"description": "A utility PHP package to create aents using Symfony console.",
"homepage" : "https://github.com/theaentmachine/aent-console",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "Julien Neuhart",
"email" : "[email protected]",
"homepage" : "https://github.com/gulien"
},
{
"name" : "Jindun Shao",
"email" : "[email protected]",
"homepage" : "https://github.com/JinTotonic"
},
{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "https://github.com/moufmouf"
}
],
"require" : {
"php" : ">=7.1",
"symfony/console": "^4.0",
"symfony/yaml": "4.1.1",
"symfony/process": "^4.1",
"symfony/finder": "^4.1",
"symfony/filesystem": "^4.1",
"guzzlehttp/guzzle": "^6.3.3",
"psr/log": "^1",
"opis/json-schema": "^1.0",
"docker-php/docker-php": "^2"
},
"require-dev" : {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.10.3",
"thecodingmachine/phpstan-strict-rules": "^0.10.3",
"thecodingmachine/phpstan-safe-rule": "^0.1.0@dev",
"gamez/psr-testlogger": "^3"
},
"autoload" : {
"psr-4" : {
"TheAentMachine\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"TheAentMachine\\" : "tests/"
}
},
"scripts": {
"ci": [
"@cs-check",
"@phpstan",
"@phpunit"
],
"cs-fix": "phpcbf",
"cs-check": "phpcs",
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
"phpunit": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}