Skip to content

Commit

Permalink
fix: readme implies wrong composer require command (#403)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
luceos authored Jul 23, 2024
1 parent a33cd49 commit c5faa01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit c5faa01

Please sign in to comment.