Provides an extended Postgres driver for Laravel 4 that provides support for PostGIS features
Add a requirement for the package
{
"require": {
"lamb/laravel-postgis-database": "dev-master"
}
}
Add it to the list of providers
'providers' => array(
'Lamb\LaravelPostgisDatabase\PostgisDatabaseServiceProvider'
)
Add a connection using the postgis driver instead of pgsql
'pgsql' => array(
'driver' => 'postgis',
'host' => 'localhost',
'database' => 'database',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
),
Released under the MIT license