-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1019 Bytes
/
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
{
"name": "thinkshout/robo-drupal",
"description": "Robo Tasks for Drupal projects",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Tauno Hogue",
"email": "[email protected]"
}
],
"conflict": {
"drupal/core": "<9"
},
"autoload":
{
"psr-4":
{
"ThinkShout\\RoboDrupal\\": "src"
}
},
"require": {
"vlucas/phpdotenv": ">=5.0",
"drupal/config_split": "^2.0",
"drush/drush": ">=9.6",
"genesis/behat-fail-aid": "^3.6"
},
"extra": {
"drupal-scaffold": {
"file-mapping": {
"[project-root]/.env.dist": {
"path": "assets/.env.dist",
"overwrite": false
},
"[project-root]/RoboFile.php": {
"path": "assets/RoboFile.php",
"overwrite": false
}
}
}
}
}