forked from pdenooijer/hook_event_dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 2.16 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
{
"name": "drupal/hook_event_dispatcher",
"description": "Dispatches events for several drupal core hooks.",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"require-dev": {
"drupal/coder": "^8.3.1",
"drupal/core": "^8.7",
"jakub-onderka/php-console-highlighter": "^0.4.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^5.7 || ^6.5",
"squizlabs/php_codesniffer": "^3.4"
},
"minimum-stability": "alpha",
"scripts": {
"test": [
"@phplint",
"@phpunit",
"@phpcs",
"@phpmd"
],
"phplint": "vendor/bin/parallel-lint --exclude vendor/ --exclude .idea/ -e php,module,inc,install,profile,theme .",
"phpunit": "vendor/bin/phpunit --configuration=phpunit.xml",
"phpcs": "vendor/bin/phpcs --ignore=vendor/,.idea/ --standard=vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml --extensions=php,module,inc,install,profile,theme --report=full --warning-severity=0 .",
"phpcbf": "vendor/bin/phpcbf --ignore=vendor/,.idea/ --standard=vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml --extensions=php,module,inc,install,profile,theme .",
"phpmd": "vendor/bin/phpmd --exclude vendor/,.idea/ --suffixes php,module,inc,install,profile,theme . text phpmd.xml"
},
"autoload": {
"psr-4": {
"Drupal\\hook_event_dispatcher\\": "src/",
"Drupal\\webform_event_dispatcher\\": "modules/webform_event_dispatcher/src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\hook_event_dispatcher\\": "tests/src/",
"Drupal\\Tests\\webform_event_dispatcher\\": "modules/webform_event_dispatcher/tests/src/",
"Drupal\\Tests\\": "vendor/drupal/core/tests/Drupal/Tests",
"Drupal\\views\\": "vendor/drupal/core/modules/views/src/"
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"config": {
"platform": {
"php": "5.6"
}
},
"suggest": {
"drupal/token": "Provides additional tokens not supported by core (most notably fields), as well as a UI for browsing tokens.",
"drupal/paragraphs": "Enables the creation of paragraphs entities."
}
}