Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisCarden committed Dec 9, 2019
2 parents 1145adb + 9c03510 commit 0f55814
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.1
v1.1.2
8 changes: 7 additions & 1 deletion src/Fixture/FixtureCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,11 +339,14 @@ private function createBltProject(): void {
'--no-install',
'--no-interaction',
'acquia/blt-project',
$this->fixture->getPath(),
];
if ($this->sut === 'acquia/blt' || $this->isDev) {
$command[] = '--stability=dev';
}
else {
$command[] = '--stability=alpha';
}
$command[] = $this->fixture->getPath();
$this->processRunner->runOrcaVendorBin($command);
}

Expand Down Expand Up @@ -413,6 +416,9 @@ private function fixDefaultDependencies(): void {
$additions[] = "drupal/core:{$this->drupalCoreVersion}";
}

// Install Drupal core dev requirements.
$additions[] = 'drupal/core-dev';

// Install requirements for deprecation checking.
$additions[] = 'mglaman/phpstan-drupal-deprecations';
$additions[] = 'nette/di:^3.0';
Expand Down

0 comments on commit 0f55814

Please sign in to comment.