This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
84 lines (84 loc) · 3.78 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"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",
"drupal/core-recommended": "^9.0",
"drupal/eck": "^1.0@alpha",
"drupal/paragraphs": "^1.10",
"mockery/mockery": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpmd/phpmd": "^2.8",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.4"
},
"minimum-stability": "alpha",
"prefer-stable": true,
"scripts": {
"test": [
"@phpunit",
"@phpcbf",
"@phpcs",
"@phpmd"
],
"ci": [
"@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=phpcs.xml --extensions=php,module,inc,install,profile,theme,css,info,txt,md,yml --report=full .",
"phpcbf": "vendor/bin/phpcbf --ignore=vendor/,.idea/ --standard=phpcs.xml --extensions=php,module,inc,install,profile,theme,css,info,txt,md,yml .",
"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\\core_event_dispatcher\\": "modules/core_event_dispatcher/src/",
"Drupal\\field_event_dispatcher\\": "modules/field_event_dispatcher/src/",
"Drupal\\media_event_dispatcher\\": "modules/media_event_dispatcher/src/",
"Drupal\\path_event_dispatcher\\": "modules/path_event_dispatcher/src/",
"Drupal\\preprocess_event_dispatcher\\": "modules/preprocess_event_dispatcher/src/",
"Drupal\\toolbar_event_dispatcher\\": "modules/toolbar_event_dispatcher/src/",
"Drupal\\user_event_dispatcher\\": "modules/user_event_dispatcher/src/",
"Drupal\\views_event_dispatcher\\": "modules/views_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\\core_event_dispatcher\\": "modules/core_event_dispatcher/tests/src/",
"Drupal\\Tests\\field_event_dispatcher\\": "modules/field_event_dispatcher/tests/src/",
"Drupal\\Tests\\media_event_dispatcher\\": "modules/media_event_dispatcher/tests/src/",
"Drupal\\Tests\\path_event_dispatcher\\": "modules/path_event_dispatcher/tests/src/",
"Drupal\\Tests\\preprocess_event_dispatcher\\": "modules/preprocess_event_dispatcher/tests/src/",
"Drupal\\Tests\\toolbar_event_dispatcher\\": "modules/toolbar_event_dispatcher/tests/src/",
"Drupal\\Tests\\user_event_dispatcher\\": "modules/user_event_dispatcher/tests/src/",
"Drupal\\Tests\\views_event_dispatcher\\": "modules/views_event_dispatcher/tests/src/",
"Drupal\\Tests\\webform_event_dispatcher\\": "modules/webform_event_dispatcher/tests/src/",
"Drupal\\Tests\\": "vendor/drupal/core/tests/Drupal/Tests",
"Drupal\\TestTools\\": "vendor/drupal/core/tests/Drupal/TestTools",
"Drupal\\media\\": "vendor/drupal/core/modules/media/src/",
"Drupal\\views\\": "vendor/drupal/core/modules/views/src/"
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"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."
}
}