mammutgroup/database
Laravel-Mysql-Extended
An extended PostgreSQL driver for Laravel 5 with support for some aditional PostgreSQL data types: hstore, uuid, geometric types (point, path, circle, line, polygon...)
Getting Started
Laravel 5.2
- Run
composer require Mammutgroup/databasein your project root directory. - Add
Mammutgroup\Database\DatabaseServiceProvider::classtoconfig/app.php'sprovidersarray.
Then you are done.
Lumen 5.*
- Run
composer require Mammutgroup/databasein your project root directory. - Add
$app->register(Mammutgroup\Database\DatabaseServiceProvider::class);tobootstrap/app.php(under the "Register Service Providers" section) - Uncomment the line
$app->withEloquent();inbootstrap/app.php