-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (40 loc) · 1.47 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
{
"name": "pantheon-systems/example-drupal8-circle-composer",
"description": "Template for creating a project to manage a Drupal site with Composer, and test with Circle CI. Use `composer create-project` to make your own project, or, if you prefer to clone the git repository, run `composer install` followed by `bin/init-new-project` to replace this file and set up your starting project.",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"require": {
"composer/installers": "^1.0.20",
"pantheon-systems/drupal-core": "8.0.*",
"drush/drush": "8.*",
"drupal/devel": "8.1.*@dev",
"drupal/token": "8.1.*@dev"
},
"require-dev": {
"pantheon-systems/circle-scripts": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-create-project-cmd": "./bin/init-new-project",
"post-install-cmd": "scripts/composer/post-install.sh"
},
"config": {
"bin-dir": "bin/"
},
"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"],
"web/drush/commands/{$name}": ["type:drupal-drush"]
}
}
}