diff --git a/src/Command/App/NewCommand.php b/src/Command/App/NewCommand.php index 285ee9d0f..4a1f389f9 100644 --- a/src/Command/App/NewCommand.php +++ b/src/Command/App/NewCommand.php @@ -23,6 +23,7 @@ final class NewCommand extends CommandBase */ private static array $distros = [ 'acquia_drupal_recommended' => 'acquia/drupal-recommended-project', + 'acquia_drupal_cms' => 'acquia/drupal-cms-project', 'acquia_next_acms' => 'acquia/next-acms', ]; protected function configure(): void @@ -39,6 +40,7 @@ protected function configure(): void protected function execute(InputInterface $input, OutputInterface $output): int { $this->output->writeln('Acquia recommends most customers use acquia/drupal-recommended-project to setup a Drupal project, which includes useful utilities such as Acquia Connector.'); + $this->output->writeln('acquia/drupal-cms-project is Drupal CMS scaffolded to work with Acquia hosting.'); $this->output->writeln('acquia/next-acms is a starter template for building a headless site powered by Acquia CMS and Next.js.'); if ($input->hasOption('template') && $input->getOption('template')) {