-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 1.09 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
{
"name": "drupal/config_filter",
"type": "drupal-module",
"description": "Config Filter.",
"keywords": ["drupal", "configuration"],
"minimum-stability": "stable",
"license": "GPL-2.0+",
"authors": [
{
"name": "Nuvole Web",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require-dev": {
"drupal/coder": "*"
},
"scripts": {
"post-install-cmd": [
"./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
"./vendor/bin/phpcs --config-set show_progress 1",
"cp ./tests/scripts/pre-push.sh .git/hooks/pre-push && chmod +x .git/hooks/pre-push"
],
"post-update-cmd": [
"./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
"./vendor/bin/phpcs --config-set show_progress 1",
"cp ./tests/scripts/pre-push.sh .git/hooks/pre-push && chmod +x .git/hooks/pre-push"
],
"phpcs": "./vendor/bin/phpcs --standard=Drupal,DrupalPractice . --ignore=./vendor,./tests",
"phpcbf": "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice . --ignore=./vendor,./tests"
}
}