Skip to content

Commit f7b03f4

Browse files
Issue drupal-composer#57: Distinguish files depending on dev environment.
1 parent 80c7d27 commit f7b03f4

File tree

3 files changed

+66
-22
lines changed

3 files changed

+66
-22
lines changed

README.md

+18-8
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ of your root `composer.json`.
3838
"includes": [
3939
"sites/default/example.settings.my.php"
4040
],
41+
"dev": [
42+
"my_settings_file_for_development.php"
43+
],
4144
"initial": {
4245
"sites/default/default.services.yml": "sites/default/services.yml",
4346
"sites/default/default.settings.php": "sites/default/settings.php"
@@ -58,25 +61,29 @@ default.
5861

5962
Default includes are provided by the plugin:
6063
```
61-
.csslintrc
62-
.editorconfig
63-
.eslintignore
64-
.eslintrc (Drupal <= 8.2.x)
65-
.eslintrc.json (Drupal >= 8.3.x)
66-
.gitattributes
67-
.ht.router.php (Drupal >= 8.5.x)
6864
.htaccess
6965
index.php
7066
robots.txt
7167
sites/default/default.settings.php
7268
sites/default/default.services.yml
73-
sites/development.services.yml
7469
sites/example.settings.local.php
7570
sites/example.sites.php
7671
update.php
7772
web.config
7873
```
7974

75+
Default dev are provided by the plugin:
76+
```
77+
.csslintrc
78+
.editorconfig
79+
.eslintignore
80+
.eslintrc (Drupal <= 8.2.x)
81+
.eslintrc.json (Drupal >= 8.3.x)
82+
.gitattributes
83+
.ht.router.php (Drupal >= 8.5.x)
84+
sites/development.services.yml
85+
```
86+
8087
When setting `omit-defaults` to `true`, neither the default excludes nor the
8188
default includes will be provided; in this instance, only those files explicitly
8289
listed in the `excludes` and `includes` options will be considered. If
@@ -87,6 +94,9 @@ The `initial` hash lists files that should be copied over only if they do not
8794
exist in the destination. The key specifies the path to the source file, and
8895
the value indicates the path to the destination file.
8996

97+
The `dev` hash lists files that should be copied over only if they do not
98+
exist in the destination and if the dev packages are installed.
99+
90100
## Limitation
91101

92102
When using Composer to install or update the Drupal development branch, the

src/Handler.php

+47-13
Original file line numberDiff line numberDiff line change
@@ -133,22 +133,30 @@ public function onPostCmdEvent(Event $event) {
133133
// Only install the scaffolding if drupal/core was installed,
134134
// AND there are no scaffolding files present.
135135
if (isset($this->drupalCorePackage)) {
136-
$this->downloadScaffold();
136+
$this->downloadScaffold($event->isDevMode());
137137
// Generate the autoload.php file after generating the scaffold files.
138138
$this->generateAutoload();
139139
}
140140
}
141141

142142
/**
143143
* Downloads drupal scaffold files for the current process.
144+
*
145+
* @param bool $dev
146+
* TRUE if dev packages are installed. FALSE otherwise.
144147
*/
145-
public function downloadScaffold() {
148+
public function downloadScaffold($dev = FALSE) {
146149
$drupalCorePackage = $this->getDrupalCorePackage();
147150
$webroot = realpath($this->getWebRoot());
148151

149-
// Collect options, excludes and settings files.
152+
// Collect options, excludes, dev and settings files.
150153
$options = $this->getOptions();
151-
$files = array_diff($this->getIncludes(), $this->getExcludes());
154+
$includes = $this->getIncludes();
155+
// Check dev files if necessary.
156+
if ($dev) {
157+
$includes = array_merge($includes, $this->getDev());
158+
}
159+
$files = array_diff($includes, $this->getExcludes());
152160

153161
// Call any pre-scaffold scripts that may be defined.
154162
$dispatcher = new EventDispatcher($this->composer, $this->io);
@@ -304,6 +312,15 @@ protected function getIncludes() {
304312
return $this->getNamedOptionList('includes', 'getIncludesDefault');
305313
}
306314

315+
/**
316+
* Retrieve list of additional dev files from optional "extra" configuration.
317+
*
318+
* @return array
319+
*/
320+
protected function getDev() {
321+
return $this->getNamedOptionList('dev', 'getDevDefault');
322+
}
323+
307324
/**
308325
* Retrieve list of initial files from optional "extra" configuration.
309326
*
@@ -343,6 +360,7 @@ protected function getOptions() {
343360
'excludes' => [],
344361
'includes' => [],
345362
'initial' => [],
363+
'dev' => [],
346364
'source' => 'https://cgit.drupalcode.org/drupal/plain/{path}?h={version}',
347365
// Github: https://raw.githubusercontent.com/drupal/drupal/{version}/{path}
348366
];
@@ -360,32 +378,48 @@ protected function getExcludesDefault() {
360378
* Holds default settings files list.
361379
*/
362380
protected function getIncludesDefault() {
363-
$version = $this->getDrupalCoreVersion($this->getDrupalCorePackage());
364-
list($major, $minor) = explode('.', $version, 3);
365-
$version = "$major.$minor";
366-
367381
/**
368382
* Files from 8.3.x
369383
*
370384
* @see https://cgit.drupalcode.org/drupal/tree/?h=8.3.x
371385
*/
372386
$common = [
373-
'.csslintrc',
374-
'.editorconfig',
375-
'.eslintignore',
376-
'.gitattributes',
377387
'.htaccess',
378388
'index.php',
379389
'robots.txt',
380390
'sites/default/default.settings.php',
381391
'sites/default/default.services.yml',
382-
'sites/development.services.yml',
383392
'sites/example.settings.local.php',
384393
'sites/example.sites.php',
385394
'update.php',
386395
'web.config',
387396
];
388397

398+
return $common;
399+
}
400+
401+
/**
402+
* Holds default dev files list.
403+
*/
404+
protected function getDevDefault() {
405+
$version = $this->getDrupalCoreVersion($this->getDrupalCorePackage());
406+
list($major, $minor) = explode('.', $version, 3);
407+
$version = "$major.$minor";
408+
409+
/**
410+
* Files from 8.3.x
411+
*
412+
* @see http://cgit.drupalcode.org/drupal/tree/?h=8.3.x
413+
*/
414+
$common = [
415+
'.csslintrc',
416+
'.editorconfig',
417+
'.eslintignore',
418+
'.eslintrc.json',
419+
'.gitattributes',
420+
'sites/development.services.yml',
421+
];
422+
389423
// Version specific variations.
390424
if (Semver::satisfies($version, '<8.3')) {
391425
$common[] = '.eslintrc';

src/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function postCmd(Event $event) {
9595
public static function scaffold(Event $event) {
9696
@trigger_error('\DrupalComposer\DrupalScaffold\Plugin::scaffold is deprecated since version 2.5.0 and will be removed in 3.0. Use "composer drupal:scaffold" instead.', E_USER_DEPRECATED);
9797
$handler = new Handler($event->getComposer(), $event->getIO());
98-
$handler->downloadScaffold();
98+
$handler->downloadScaffold($event->isDevMode());
9999
// Generate the autoload.php file after generating the scaffold files.
100100
$handler->generateAutoload();
101101
}

0 commit comments

Comments
 (0)