Jon87
Try to change host localhost to 127.0.0.1 in your config.php. I had the same problem in a chroot environment (maybe PHP CLI missing some exts / MySQL local socket).
<?php return array (
...
'database' =>
array (
'driver' => 'mysql',
'host' => '127.0.0.1',
...
),
...
);
Jon87
Stability is beta, not stable.
composer create-project flarum/flarum . --stability=beta
You can install an older version if you want:
composer create-project flarum/flarum:0.1.0-beta.13 . --stability=beta