Skip to content

Commit

Permalink
Point to DRP 3
Browse files Browse the repository at this point in the history
  • Loading branch information
sayan goswami committed Sep 2, 2024
1 parent 32c9246 commit 77535fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Options/FixtureOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -303,14 +303,14 @@ public function getProjectTemplate(): string {
if ($this->coreVersionParsedMatches('^9')) {
$this->options['project-template'] = 'acquia/drupal-recommended-project:^1';
}
elseif ($this->coreVersionParsedMatches('^10') && $this->isDev()) {
$this->options['project-template'] = 'acquia/drupal-recommended-project:2.x-dev';
}
elseif ($this->coreVersionParsedMatches('^10')) {
$this->options['project-template'] = 'acquia/drupal-recommended-project:^2';
}
elseif ($this->coreVersionParsedMatches('^11') && $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';
$this->options['project-template'] = 'acquia/drupal-recommended-project:^3';
}
else {
$this->options['project-template'] = 'acquia/drupal-recommended-project';
Expand Down

0 comments on commit 77535fc

Please sign in to comment.