If you're having trouble installing Flarum, or you can't seem to install new extensions via Composer, read this!
A new version of Composer was released the other day which exposed the use of a deprecated API in the flarum/composer-installer package. This is the package that tells Composer to install Flarum extensions into the extensions
directory instead of the vendor
directory. It broke, and so if you've tried a fresh installation of Flarum recently, it mightn't have worked.
We've fixed the issue and released a new version of this package (0.2.0). If you're doing a fresh installation of Flarum, simply follow the installation instructions again and it should work.
If you've already got an existing working installation of Flarum, you'll need to make a small update to your composer.json file. Change:
"flarum/composer-installer": "^0.1.0",
to:
"flarum/composer-installer": "*",
And then run this command:
$ composer update
Sorry about any inconvenience this may have caused! Please let us know if you have any trouble.