-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 1.09 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": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "MIT",
"authors": [{
"name": "",
"role": ""
}],
"support": {},
"repositories": [{
"type": "composer",
"url": "http://packagist.drupal-composer.org"
}],
"require": {
"composer/installers": "^1.0.20",
"drupal/drupal": "8.0.x-dev",
"drush/drush": "7.0.x-dev",
"drupal/token": "8.1.x-dev",
"drupal/libraries": "8.3.x-dev",
"drupal/search_api": "8.1.x-dev",
"drupal/devel": "8.1.x-dev"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": "scripts/composer/post-install.sh"
},
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"]
}
}
}