-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.05 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
{
"name": "viison/style-guide",
"type": "viison-git-hooks",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:VIISON/composer-git-hooks-installer-plugin.git"
}
],
"require": {
"php": ">=5.4.0",
"viison/composer-git-hooks-installer-plugin": "^1.3",
"squizlabs/php_codesniffer": "^3.7.0"
},
"extra": {
"available-viison-git-hooks": {
"shopware-plugin": "git-hooks/shopware-plugin/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs -s -n .",
"phpcs:fix": "vendor/bin/phpcbf -s -n .",
"phplint": "echo \"Linting all PHP files...\"; LINT_RETURN=0; for FILE in $(find . -regex \".*\\.php\" -not -path \"./vendor/*\"); do if ! php -l \"$FILE\"; then LINT_RETURN=1; fi; done; exit $LINT_RETURN;"
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "7.5.20"
},
"config": {
"allow-plugins": {
"viison/composer-git-hooks-installer-plugin": true
}
}
}