-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 2.08 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 2.08 KB
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": "digitalutsc/advancedqueue_runner",
"type": "drupal-module",
"description": "This module provides a way to run Advanced queue automatically as daemon without manually using a Drush command or running a Cron job.",
"keywords": [
],
"homepage": "https://www.drupal.org/project/advancedqueue_runner",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-2.0-only",
"support": {
"issues": "https://www.drupal.org/project/issues/advancedqueue_runner",
"source": "https://git.drupalcode.org/project/advancedqueue_runner"
},
"extra": {
"drush": {
"services": {
"drush.services.yml": "^9"
}
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"react/child-process": "^0.6.5",
"react/event-loop": "^1.2",
"drupal/advancedqueue": "^1.2"
},
"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": "digitalscholarship@utsc.utoronto.ca",
"role": "Owner"
},
{
"name": "Kyle Huynh",
"email": "kyle.huynh205@gmail.com",
"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 ."
]
}
}