Skip to content

Instantly share code, notes, and snippets.

@jgrossi
Created February 19, 2016 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgrossi/ed0fcb84132075e42ca8 to your computer and use it in GitHub Desktop.
Save jgrossi/ed0fcb84132075e42ca8 to your computer and use it in GitHub Desktop.
Laravel and Wordpress together
<?php // File: /config/database.php
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'app',
'username' => 'admin'
'password' => 'secret',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => false,
'engine' => null,
],
'wordpress' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'corcel',
'username' => 'admin',
'password' => 'secret',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => 'wp_',
'strict' => false,
'engine' => null,
],
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment