forked from digitalutsc/islandora_group
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.7 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
{
"name": "digitalutsc/islandora_group",
"type": "drupal-module",
"description": "This module assists to manage access control for node and media with Group module",
"keywords": [
],
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/islandora_group",
"minimum-stability": "dev",
"support": {
"issues": "https://www.drupal.org/project/issues/islandora_group",
"source": "http://cgit.drupalcode.org/islandora_group"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"drupal/group": "^2.0",
"drupal/groupmedia": "^3.0@alpha",
"drupal/group_permissions":"^2.0@alpha"
},
"authors": [
{
"name": "The University of Toronto Scarborough Library's Digital Scholarship Unit (DSU)",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Kyle Huynh",
"email": "[email protected]",
"role": "Maintainer"
}
],
"scripts": {
"post-install-cmd": [
"./vendor/bin/phpcs --config-set installed_paths ~/.composer/vendor/drupal/coder/coder_sniffer"
],
"post-update-cmd": [
"./vendor/bin/phpcs --config-set installed_paths ~/.composer/vendor/drupal/coder/coder_sniffer"
],
"check": [
"./vendor/bin/phpcs --standard=Drupal --ignore=*.md,vendor --extensions=php,module,inc,install,test,profile,theme,css,info .",
"./vendor/bin/phpcpd --names='*.module,*.inc,*.test,*.php' --exclude=vendor ."
]
}
}