-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.39 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
{
"name": "ottca/popup_survey",
"type": "drupal-custom-module",
"description": "Provides a popup box that can be configured to display only on certain pages and for only 1 out of every X users.",
"keywords": [
"Drupal"
],
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/CityofOttawa/popup_survey",
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/CityofOttawa/popup_survey/issues",
"source": "https://github.com/CityofOttawa/popup_survey.git"
},
"authors": [
{
"name": "Coldfront Labs Inc.",
"role": "Developer"
}
],
"repositories": {
"0": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"1": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"drupal/token": "^1.9"
},
"require-dev": {
"composer/composer": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"drupal/coder": "^8.3",
"phpcompatibility/php-compatibility": "*"
},
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"scripts": {
"test:phpcompatibility": [
"phpcs --ignore='**/core/*,**/testing/*,**/test/*,**/node_modules/*,**/vendor/*,**/bin/*,*.md' --extensions=php,module,inc,install,test,profile,theme --standard=PHPCompatibility -p --runtime-set testVersion 7.2- ./"
]
}
}