-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
127 lines (125 loc) · 3.78 KB
/
composer.json
File metadata and controls
127 lines (125 loc) · 3.78 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "pantheon-systems/example-drops-8-composer",
"description": "Install drops-8 with Composer on Pantheon.",
"type": "project",
"license": "GPL-2.0+",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.5",
"cweagans/composer-patches": "^1.6.5",
"drupal/core": "8.5.6",
"drupal/console": "^1.0.2",
"drush/drush": "^9.0.0",
"drupal/address": "~1.0",
"goalgorilla/open_social": "^3.0",
"doctrine/cache": "1.8.0",
"doctrine/collections": "1.5.0",
"doctrine/common": "2.8",
"doctrine/inflector": "1.3.0"
},
"require-dev": {
"webflo/drupal-core-require-dev": "8.5.6",
"mikey179/vfsstream": "~1.2",
"behat/behat": "3.*",
"behat/mink": "~1.7",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "~1.2",
"jcalderonzumba/gastonjs": "~1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"drupal/drupal-extension": "*",
"drush-ops/behat-drush-endpoint": "*",
"phpunit/phpunit": "6.5",
"symfony/css-selector": "^3.4.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"build-assets": "echo 'No build step defined.'",
"drupal-unit-tests": "cd web/core && ../../vendor/bin/phpunit --testsuite=unit --exclude-group Composer,DependencyInjection,PageCache",
"drupal": "drupal --ansi",
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"web/core": [
"drupal/core"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/social": [
"goalgorilla/open_social"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"web/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"source": "https://raw.githubusercontent.com/pantheon-systems/drops-8/{version}/{path}",
"includes": [
"sites/default/default.services.pantheon.preproduction.yml",
"sites/default/settings.pantheon.php"
],
"excludes": [
".csslintrc",
".editorconfig",
".eslintignore",
".eslintrc.json",
".htaccess",
"web.config",
".gitattributes",
".ht.router.php",
".htaccess",
"index.php",
"robots.txt",
"sites/default/default.settings.php",
"sites/default/default.services.yml",
"sites/development.services.yml",
"sites/example.settings.local.php",
"sites/example.sites.php",
"update.php",
"web.config"
]
},
"enable-patching": true
}
}