-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
49 lines (49 loc) · 1.22 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
{
"name": "drupal/drush_cmi_tools",
"type": "drupal-module",
"description": "Export configuration to a directory and apply an ignore list.",
"keywords": [
"Drupal"
],
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/previousnext/drush_cmi_tools",
"support": {
"issues": "https://github.com/previousnext/drush_cmi_tools/issues",
"source": "https://github.com/previousnext/drush_cmi_tools"
},
"repositories": {
"packages.drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"drupal/core": "^8.4",
"drush/drush": "^9.0||^10.0"
},
"require-dev": {
"drupal/coder": "~2.2",
"phpunit/phpunit": "~6.4",
"squizlabs/php_codesniffer": "~2.9"
},
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-4": {
"Drupal\\drush_cmi_tools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\drush_cmi_tools\\Tests\\": "tests/"
}
},
"extra": {
"drush": {
"services": {
"drush.services.yml": "^9"
}
}
}
}