Skip to content

Commit

Permalink
Update drupal10 and drupal9 instructions after drupal10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Dec 15, 2022
1 parent c65a63f commit 931d916
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions docs/content/users/quickstart.md
Expand Up @@ -144,22 +144,6 @@ DDEV comes ready to work with any PHP project, and has deeper support for severa

## Drupal

=== "Drupal 9"

### Drupal 9 via Composer

```bash
mkdir my-drupal9-site
cd my-drupal9-site
ddev config --project-type=drupal9 --docroot=web --create-docroot
ddev start
ddev composer create "drupal/recommended-project"
ddev composer require drush/drush
ddev drush site:install -y
ddev drush uli
ddev launch
```

=== "Drupal 10"

### Drupal 10 via Composer
Expand All @@ -171,15 +155,29 @@ DDEV comes ready to work with any PHP project, and has deeper support for severa
cd my-drupal10-site
ddev config --project-type=drupal10 --docroot=web --create-docroot
ddev start
ddev composer create drupal/recommended-project:^10@rc
ddev composer create drupal/recommended-project
ddev composer require drush/drush
ddev drush site:install -y
ddev drush uli
ddev launch
```

!!!tip
As Drupal 10 moves from beta and to release, you’ll want to change the tag from `^10@rc` to `^10`.

=== "Drupal 9"

### Drupal 9 via Composer

```bash
mkdir my-drupal9-site
cd my-drupal9-site
ddev config --project-type=drupal9 --docroot=web --create-docroot
ddev start
ddev composer create "drupal/recommended-project:^9"
ddev composer require drush/drush
ddev drush site:install -y
ddev drush uli
ddev launch
```

=== "Drupal 6/7"

Expand Down

0 comments on commit 931d916

Please sign in to comment.