-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "move-elevator/requirements-checker",
"description": "This package can show an administrator, which configuration is missing to launch your application.",
"type": "library",
"autoload": {
"psr-4": {
"MoveElevator\\RequirementsChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MoveElevator\\RequirementsChecker\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3",
"symfony/yaml": "^4.3",
"symfony/console": "^4.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"mikey179/vfsstream": "^1.6",
"slevomat/coding-standard": "^6.0",
"symfony/process": "^4.3",
"tm/tooly-composer-script": "^1.4"
},
"scripts": {
"post-install-cmd": [
"@activate-git-hooks",
"Tooly\\ScriptHandler::installPharTools"
],
"post-update-cmd": [
"@activate-git-hooks",
"Tooly\\ScriptHandler::installPharTools"
],
"quickcheck": [
"./vendor/bin/phpcs.phar ./src ./tests ./build ./public --standard=./ruleset.xml --extensions=php",
"./vendor/bin/phpstan.phar analyse -l max -c ./phpstan.neon ./src",
"./vendor/bin/phpunit.phar -c ./phpunit.xml --testdox"
]
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-9.0.1.phar",
"sign-url": "https://phar.phpunit.de/phpunit-9.0.1.phar.asc",
"force-replace": true
},
"phpcs": {
"url": "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.5.4/phpcs.phar",
"sign-url": "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.5.4/phpcs.phar.asc",
"force-replace": true
},
"phpstan": {
"url": "https://github.com/phpstan/phpstan/releases/download/0.12.10/phpstan.phar",
"sign-url": "https://github.com/phpstan/phpstan/releases/download/0.12.10/phpstan.phar.asc",
"force-replace": true
},
"phar-box": {
"url": "https://github.com/humbug/box/releases/download/3.8.4/box.phar",
"force-replace": true
}
}
}
}