From c5faa01648e90f10b9a98816eb67c707402f0660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Tue, 23 Jul 2024 18:20:41 +0200 Subject: [PATCH] fix: readme implies wrong composer require command (#403) require accept multiple packages as arguments, using a space will tell composer to install both fof/upload and "*". Using the : delimiter will help it understand the wildcard as version constraint. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 77be15b2..df327179 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ An extension that handles file uploads intelligently for your forum. Install manually: ```sh -composer require fof/upload "*" +composer require fof/upload:"*" ``` ## Updating ```sh -composer require fof/upload "*" +composer require fof/upload:"*" php flarum migrate php flarum cache:clear ```