-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.73 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
{
"name": "gent-drupal/gent_base",
"description": "Drupal theming layer for styleguide Gent.",
"license": "GPL-2.0-or-later",
"type": "drupal-theme",
"keywords": [
"gent",
"drupal",
"theme"
],
"homepage": "https://bitbucket.org/digipolisgent/drupal_theme_gent-base",
"require": {
"php": "^8.3"
},
"require-dev": {
"digipolisgent/qa-drupal": "^2"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
},
"sort-packages": true
},
"extra": {
"grumphp": {
"config-default-path": "vendor/digipolisgent/qa-drupal/configs/grumphp-extension.yml"
}
},
"scripts": {
"post-install-cmd": [
"bash -c 'cd ./scripts; ./install.sh;'"
],
"post-update-cmd": [
"bash -c 'cd ./scripts; ./install.sh;'"
],
"coverage": "vendor/bin/phpunit --configuration=phpunit.qa-drupal.xml --coverage-html build/coverage",
"grumphp": "vendor/bin/grumphp run -n",
"gulp-validate": "cd source && gulp validate",
"phpcpd": "vendor/bin/grumphp run --tasks=phpcpd",
"phpcs": "vendor/bin/grumphp run --tasks=phpcs",
"phpmd": "vendor/bin/grumphp run --tasks=phpmd",
"phpstan": "vendor/bin/grumphp run --tasks=phpstan",
"phpunit": "vendor/bin/phpunit --configuration=phpunit.qa-drupal.xml"
}
}