Skip to content

Commit

Permalink
Updates (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayan Goswami authored May 13, 2024
1 parent 4cf29bd commit 377bc97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,12 @@ drush/drush:
9.x:
version: 11.x
version_dev: 11.x
'*':
10.x:
version: 12.x
version_dev: 12.x-dev
'*':
version: 13.x
version_dev: 13.x-dev

# Acquia CMS uses drupal-test-traits as a dev dependency.
# @todo remove this via ORCA-298
Expand Down
3 changes: 3 additions & 0 deletions src/Options/FixtureOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,9 @@ public function getProjectTemplate(): string {
elseif ($this->coreVersionParsedMatches('^10') && $this->isDev()) {
$this->options['project-template'] = 'acquia/drupal-recommended-project:dev-master';
}
elseif ($this->coreVersionParsedMatches('^11')) {
$this->options['project-template'] = 'acquia/drupal-recommended-project:dev-drupal11';
}
else {
$this->options['project-template'] = 'acquia/drupal-recommended-project';
}
Expand Down

0 comments on commit 377bc97

Please sign in to comment.