Skip to content

Instantly share code, notes, and snippets.

@degt
Created June 3, 2013 00:23
Show Gist options
  • Save degt/5695489 to your computer and use it in GitHub Desktop.
Save degt/5695489 to your computer and use it in GitHub Desktop.
MAMP laravel database config
<?php
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'database',
'unix_socket' => '/Applications/MAMP/tmp/mysql/mysql.sock',
'username' => 'root',
'password' => 'root',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
?>
@limatuz
Copy link

limatuz commented Jun 7, 2017

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment