forked from digitalutsc/drupal_libcal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.89 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
{
"name": "digitalutsc/drupal_libcal",
"type": "drupal-module",
"description": "This module is integrate Libcal API and feed to drupal.",
"keywords": [
"Libcal"
],
"license": "GPL-2.0-only",
"homepage": "https://www.drupal.org/project/drupal_libcal",
"support": {
"issues": "https://www.drupal.org/project/issues/drupal_libcal",
"source": "https://git.drupalcode.org/project/drupal_libcal"
},
"minimum-stability": "dev",
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"drupal/menu_ui": "*"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3",
"drupal/coder": "*",
"sebastian/phpcpd": "*"
},
"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"
},
{
"name": "ChulHee Yoon",
"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 ."
]
}
}