From 236bc7dde675b9228b9bb8e448b2d81933ed186d Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Fri, 28 Nov 2014 11:15:22 +0000 Subject: [PATCH] Fixed formatting issues --- INSTALL.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index a5a8f2ea..4db4c79d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -51,7 +51,7 @@ Laravel uses PDO for its database driver so it should be compatible with: - Postgresql - MSSQL -No .sqlite file is included, so be sure to add this into your `app/database` directory. +No `.sqlite` file is included, so be sure to add this into your `app/database` directory. Laravel 4 enables you to [protect your sensitive configuration details](http://laravel.com/docs/4.2/configuration#protecting-sensitive-configuration) with the use of .env files. For your production environment, create a `.env.php` file in the root of your project, or for environment specific create the file named `.env.environment.php`. @@ -60,12 +60,12 @@ For example, if working locally with MySQL, your `.env.local.php` file would be: ```php 'mysql', - 'DB_HOST' => 'localhost', - 'DB_DATABASE' => 'cachet', - 'DB_USERNAME' => 'root', - 'DB_PASSWORD' => 'secret', +return [ + 'DB_DRIVER' => 'mysql', + 'DB_HOST' => 'localhost', + 'DB_DATABASE' => 'cachet', + 'DB_USERNAME' => 'root', + 'DB_PASSWORD' => 'secret', ]; ?>