'mysql', /* |-------------------------------------------------------------------------- | Database Connections |-------------------------------------------------------------------------- | | All of the database connections used by your application. Many of your | applications will no doubt only use one connection; however, you have | the freedom to specify as many connections as you can handle. | | All database work in Laravel is done through the PHP's PDO facilities, | so make sure you have the PDO drivers for your particlar database of | choice installed on your machine. | | Drivers: 'mysql', 'pgsql', 'sqlsrv', 'sqlite'. | */ 'connections' => array( 'sqlite' => array( 'driver' => 'sqlite', 'database' => 'application', ), 'mysql' => array( 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'database', 'username' => 'root', 'password' => 'password', 'charset' => 'utf8', ), 'pgsql' => array( 'driver' => 'pgsql', 'host' => 'localhost', 'database' => 'database', 'username' => 'root', 'password' => 'password', 'charset' => 'utf8', ), 'sqlsrv' => array( 'driver' => 'sqlsrv', 'host' => 'localhost', 'database' => 'database', 'username' => 'root', 'password' => 'password', ), ), /* |-------------------------------------------------------------------------- | Redis Databases |-------------------------------------------------------------------------- | | Redis is an open source, fast, and advanced key-value store. However, it | provides a richer set of commands than a typical key-value store such as | APC or memcached. All the cool kids are using it. | | To get the scoop on Redis, check out: http://redis.io | */ 'redis' => array( 'default' => array('host' => '127.0.0.1', 'port' => 6379), ), );