This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 2.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
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
{
"name": "gent-drupal/og_sm",
"description": "Support to setup a platform supporting multiple (sub)sites using Organic Groups.",
"license": "GPL-2.0+",
"type": "drupal-module",
"keywords": [
"Drupal",
"Organic Groups",
"Site Manager",
"Organic Groups Site Manager",
"District09",
"Digipolis"
],
"homepage": "https://www.drupal.org/project/og_sm",
"support": {
"issues": "https://github.com/digipolisgent/drupal_module_og-sm/issues",
"source": "https://github.com/digipolisgent/drupal_module_og-sm"
},
"require": {
"php": "^8.1",
"drupal/og": "^1.0"
},
"require-dev": {
"digipolisgent/qa-drupal": "^2",
"drupal/admin_toolbar": "^3.4",
"drupal/core": "^9.5",
"drupal/og_menu": "^2.0@alpha",
"drupal/pathauto": "^1.12",
"drupal/token": "^1.12",
"phpspec/prophecy-phpunit": "^2",
"psr/event-dispatcher": "1.0.x-dev"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"minimum-stability": "dev",
"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",
"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"
}
}