Skip to content

Commit ef8dbd5

Browse files
committed
chore: update install commands
1 parent 9d4fcc5 commit ef8dbd5

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you don't have SSH access to your server, or you prefer not to use the comman
4747
Flarum uses [Composer](https://getcomposer.org) to manage its dependencies and extensions. If you're not familiar with it, read [our guide](composer.md) for information on what it is and how to set it up. Afterwards, run this command in an empty location that you want Flarum to be installed in:
4848

4949
```bash
50-
composer create-project flarum/flarum --stability=beta .
50+
composer create-project flarum/flarum:^2.0.0 --stability=beta .
5151
```
5252

5353
While this command is running, you can configure your web server. You will need to make sure your webroot is set to `/path/to/your/forum/public`, and set up [URL Rewriting](#url-rewriting) as per the instructions below.

i18n/de/docusaurus-plugin-content-docs/current/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum uses [Composer](https://getcomposer.org) to manage its dependencies and extensions. If you're not familiar with it, read [our guide](composer.md) for information on what it is and how to set it up. Afterwards, run this command in an empty location that you want Flarum to be installed in:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
While this command is running, you can configure your web server. You will need to make sure your webroot is set to `/path/to/your/forum/public`, and set up [URL Rewriting](#url-rewriting) as per the instructions below.
@@ -63,7 +63,7 @@ When everything is ready, navigate to your forum in a web browser and follow the
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/de/docusaurus-plugin-content-docs/version-1.x/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum uses [Composer](https://getcomposer.org) to manage its dependencies and extensions. If you're not familiar with it, read [our guide](composer.md) for information on what it is and how to set it up. Afterwards, run this command in an empty location that you want Flarum to be installed in:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
While this command is running, you can configure your web server. You will need to make sure your webroot is set to `/path/to/your/forum/public`, and set up [URL Rewriting](#url-rewriting) as per the instructions below.
@@ -63,7 +63,7 @@ When everything is ready, navigate to your forum in a web browser and follow the
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/es/docusaurus-plugin-content-docs/current/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum utiliza [Composer](https://getcomposer.org) para gestionar sus dependencias y extensiones. Antes de instalar Flarum, necesitarás [instalar Composer](https://getcomposer.org) en tu máquina. Después, ejecuta este comando en una ubicación vacía en la que quieras que se instale Flarum:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
Mientras se ejecuta este comando, puede configurar su servidor web. Tendrás que asegurarte de que tu webroot está configurado en `/ruta/para/su/foro/public`, y configurar el [URL Rewriting](#url-rewriting) según las instrucciones siguientes.
@@ -63,7 +63,7 @@ Cuando todo esté listo, navega a tu foro en un navegador web y sigue las instru
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/es/docusaurus-plugin-content-docs/version-1.x/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum utiliza [Composer](https://getcomposer.org) para gestionar sus dependencias y extensiones. Antes de instalar Flarum, necesitarás [instalar Composer](https://getcomposer.org) en tu máquina. Después, ejecuta este comando en una ubicación vacía en la que quieras que se instale Flarum:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
Mientras se ejecuta este comando, puede configurar su servidor web. Tendrás que asegurarte de que tu webroot está configurado en `/ruta/para/su/foro/public`, y configurar el [URL Rewriting](#url-rewriting) según las instrucciones siguientes.
@@ -63,7 +63,7 @@ Cuando todo esté listo, navega a tu foro en un navegador web y sigue las instru
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/it/docusaurus-plugin-content-docs/current/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Quando tutto è pronto, accedi al tuo forum in un browser web e segui le istruzi
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/it/docusaurus-plugin-content-docs/version-1.x/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Quando tutto è pronto, accedi al tuo forum in un browser web e segui le istruzi
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/tr/docusaurus-plugin-content-docs/current/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum, bağımlılıklarını ve uzantılarını yönetmek için [Composer](https://getcomposer.org) kullanır. Flarum'u kurmadan önce, makinenize [Composer'ı kurmanız](https://getcomposer.org) gerekir. Daha sonra, bu komutu Flarum'un yüklenmesini istediğiniz boş bir konumda çalıştırın:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
Bu komut çalışırken web sunucunuzu yapılandırabilirsiniz. Root klasörünüzü `/path/to/your/forum/public` olarak ayarlandığından emin olmanız ve aşağıdaki talimatlara göre \[URL Yeniden Yazma\] (# url-yeniden yazma) ayarlamanız gerekir.
@@ -63,7 +63,7 @@ Her şey hazır olduğunda, bir web tarayıcısında forumunuza gidin ve kurulum
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/tr/docusaurus-plugin-content-docs/version-1.x/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum, bağımlılıklarını ve uzantılarını yönetmek için [Composer](https://getcomposer.org) kullanır. Flarum'u kurmadan önce, makinenize [Composer'ı kurmanız](https://getcomposer.org) gerekir. Daha sonra, bu komutu Flarum'un yüklenmesini istediğiniz boş bir konumda çalıştırın:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
Bu komut çalışırken web sunucunuzu yapılandırabilirsiniz. Root klasörünüzü `/path/to/your/forum/public` olarak ayarlandığından emin olmanız ve aşağıdaki talimatlara göre \[URL Yeniden Yazma\] (# url-yeniden yazma) ayarlamanız gerekir.
@@ -63,7 +63,7 @@ Her şey hazır olduğunda, bir web tarayıcısında forumunuza gidin ve kurulum
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

i18n/vi/docusaurus-plugin-content-docs/current/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you don't have SSH access to your server or you prefer not to use the command
5353
Flarum sử dụng [Composer](https://getcomposer.org) để quản lý các phần phụ thuộc và tiện ích mở rộng của nó. Nếu bạn không quen thuộc với nó, hãy đọc [hướng dẫn của chúng tôi](composer.md) để biết thông tin về nó là gì và cách thiết lập nó. Sau đó, chạy lệnh này ở một vị trí trống mà bạn muốn cài đặt Flarum:
5454

5555
```bash
56-
composer create-project flarum/flarum .
56+
composer create-project flarum/flarum:^1.8.0 .
5757
```
5858

5959
Trong khi lệnh này đang chạy, bạn có thể định cấu hình máy chủ web của mình. Bạn sẽ cần đảm bảo rằng webroot của mình được đặt thành `/path/to/your/forum/public` và thiết lập [Rewriting URL](#url-rewriting) như theo hướng dẫn bên dưới.
@@ -63,7 +63,7 @@ Khi mọi thứ đã sẵn sàng, hãy điều hướng đến diễn đàn củ
6363
If you wish to install and update extensions from the admin dashboard, you need to also install the [Extension Manager](extensions.md) extension.
6464

6565
```bash
66-
composer require flarum/extension-manager:*
66+
composer require flarum/extension-manager:"*"
6767
```
6868

6969
:::warning

0 commit comments

Comments
 (0)