From a33fad0ba0641992b8ec65e49db3f2ee93fb9036 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Tue, 23 Dec 2014 20:18:52 +1030 Subject: [PATCH] Add instructions to install dev dependencies. --- framework/core/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/framework/core/README.md b/framework/core/README.md index 7370b5df5..b377b92f1 100644 --- a/framework/core/README.md +++ b/framework/core/README.md @@ -69,10 +69,12 @@ Currently Flarum is in its very early stages, and it isn’t pretty. **It is far 1. Make sure you have [Composer](http://getcomposer.org), [ember-cli](http://www.ember-cli.com), and [Bower](http://bower.io) installed globally. 2. Create a new [Laravel 4](http://laravel.com/docs/4.2/quick) project. 3. Open up `composer.json` and change `minimum-stability` to `dev`. -4. Run the following command in your project directory: +4. Run the following commands in your project directory: ``` composer require flarum/core + cd vendor/flarum/core + composer install ``` 5. Create a new MySQL database and configure your database details in `app/config/database.php`.