webdevbr/eloquent-zf2

Integration of Illuminate\Database with Zend Framework 2

v1.0.0-alpha 2016-05-13 20:50 UTC

This package is not auto-updated.

Last update: 2024-05-11 16:56:37 UTC


README

Instalation

Run:

composer require webdevbr/eloquent-zf2

Configuration

In the config\autoload\global.php put:

return array(
    'database' => [
    	'default' => [
		    'driver'    => 'mysql',
		    'host'      => 'localhost',
		    'database'  => 'database',
		    'username'  => 'root',
		    'password'  => 'password',
		    'charset'   => 'utf8',
		    'collation' => 'utf8_unicode_ci',
		    'prefix'    => '',
		]
    ],
    'eloquent' => [
    	'database_default'=>'default',
    	'setAsGlobal'=>true,
    ]
);