forked from louisbl/drupal8-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (36 loc) · 1.04 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
{
"name": "ozconseil/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "MIT",
"authors": [{
"name": "",
"role": ""
}],
"support": {},
"repositories": [{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}],
"require": {
"composer/installers": "^1.0.20",
"drupal/core": "8.0.*",
"drush/drush": "8.*",
"drupal/devel": "8.1.*@dev",
"drupal/token": "8.1.*@dev"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"drush": "drush --root=html"
},
"extra": {
"installer-paths": {
"html/core": ["type:drupal-core"],
"html/modules/contrib/{$name}": ["type:drupal-module"],
"html/profiles/contrib/{$name}": ["type:drupal-profile"],
"html/themes/contrib/{$name}": ["type:drupal-theme"],
"html/drush/commands/{$name}": ["type:drupal-drush"]
}
}
}