Laravel 5 – 8
PHP 5.5+
No commit activity in last 2 years
No release in over 2 years
There's a lot of open issues
Eloquent Extended, added some PostgreSQL features
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

phpunit/phpunit
~4.5
mockery/mockery
0.9.*
codeclimate/php-test-reporter
^0.3.2

Runtime

^5.0|^6.0|^7.0|^8.0
ramsey/uuid
^3.0|^4.0
doctrine/dbal
^2.5|^3.0
 Project Readme

Laravel Postgres Extended

Build Status SensioLabsInsight Code Climate Latest Stable Version Total Downloads Monthly Downloads License

An extended PostgreSQL driver for Laravel 5.2+ with support for some aditional PostgreSQL data types: hstore, uuid, geometric types (point, path, circle, line, polygon...)

Getting Started

Laravel 5.2+

  1. Run composer require bosnadev/database in your project root directory.
  2. Add Bosnadev\Database\DatabaseServiceProvider::class to config/app.php's providers array.

Then you are done.

Lumen 5.*

  1. Run composer require bosnadev/database in your project root directory.
  2. Add $app->register(Bosnadev\Database\DatabaseServiceProvider::class); to bootstrap/app.php (under the "Register Service Providers" section)
  3. Uncomment the line $app->withEloquent(); in bootstrap/app.php