-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "codeselfstudy/drupal-project",
"description": "Builds a Drupal site with composer",
"type": "project",
"license": "GPL-2.0+",
"homepage": "https://codeselfstudy.com/about-this-website",
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"authors": [
{
"name": "Josh Cohen",
"email": "josh@codeselfstudy.com",
"role": "developer"
},
{
"name": "Sierk Beij",
"email": "sierk@cococollective.org",
"role": "developer"
},
{
"name": "Code Self Study members",
"role": "contributors"
}
],
"require": {
"php": ">=5.5",
"composer/installers": "^1.0.20",
"derhasi/composer-preserve-paths": "0.1.*",
"drupal-composer/drupal-scaffold": "~1",
"cweagans/composer-patches": "~1",
"drush/drush": "~8.0",
"drupal/console": "~0.10",
"drupal/core": "8.0.*",
"drupal/gratis": "~8.2",
"drupal/features": "~8.3",
"drupal/openid_connect": "~8.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": "/bin/bash bin/composer/post-install-tasks",
"post-update-cmd": "/bin/bash bin/composer/post-update-tasks"
},
"extra": {
"drupal-scaffold": {
"excludes": [
"robots.txt"
],
"omit-defaults": false
},
"preserve-paths": [
"web/robots.txt",
"web/sites/default/files",
"web/sites/default/settings.local.php"
],
"installer-paths": {
"drush/contrib/{$name}": ["type:drupal-drush"],
"web/core": ["type:drupal-core"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/themes/contrib/{$name}": ["type:drupal-theme"]
}
}
}