Skip to content

Commit c55b914

Browse files
committed
feat(doc): Update installation section
1 parent 8e345b2 commit c55b914

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

content/docs/general/installation/_index.en.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,16 @@ As **[Drupal WxT][wxt]** is a Drupal distribution, the official guide for **[Dru
3838

3939
### Composer Download
4040

41-
Run this command and replace DIRECTORY with the directory of your choice this is where WxT will be installed.
41+
Run the following commands (choosing your version) and replace site-name with the directory of your choice this is where WxT will be installed.
4242

4343
```sh
44+
# Requires PHP 8.1
4445
composer self-update
45-
composer create-project drupalwxt/site-wxt:9.5.x-dev <site-name> --no-interaction
46+
composer create-project drupalwxt/site-wxt:10.1.x-dev <site-name> --no-interaction
47+
48+
# Requires PHP 8.2
49+
composer self-update
50+
composer create-project drupalwxt/site-wxt:10.2.x-dev <site-name> --no-interaction
4651
```
4752

4853
> **Note**: Normally you would pass a stable tag to the above command rather then just pulling from the development branch.
@@ -70,7 +75,7 @@ drush si wxt \
7075
--sites-subdir=default \
7176
--db-url=mysql://root:root@db:3306/wxt \
7277
--account-name=admin \
73-
--account-pass=Drupal@2023 \
78+
--account-pass=Drupal@2024 \
7479
7580
--site-name="Drupal Install Profile (WxT)" \
7681
wxt_extension_configure_form.select_all='TRUE' \

0 commit comments

Comments
 (0)