This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.91 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
{
"name": "gent-drupal/dg_cookiebot",
"description": "Provides extra functionality on top of the Cookiebot module.",
"license": "GPL-2.0+",
"type": "drupal-module",
"keywords": [
"Cookiebot",
"Digipolis",
"Drupal",
"Gent",
"GDPR"
],
"authors": [
{
"name": "Peter Decuyper",
"email": "[email protected]"
}
],
"homepage": "https://github.com/digipolisgent/drupal_module_dg-cookiebot",
"support": {
"source": "https://github.com/digipolisgent/drupal_module_dg-cookiebot"
},
"require": {
"php": "^8.1",
"drupal/cookiebot": "^1.0@alpha",
"drupal/core": "^10.1"
},
"require-dev": {
"digipolisgent/qa-drupal": "^2.0"
},
"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": "vendor/bin/grumphp git:init",
"coverage": "vendor/bin/phpunit --configuration=phpunit.qa-drupal.xml --coverage-html build/coverage",
"grumphp": "vendor/bin/grumphp run -n",
"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"
}
}