Download the PHP package phpexperts/postgres-for-laravel without Composer
On this page you can find all versions of the php package phpexperts/postgres-for-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download phpexperts/postgres-for-laravel
More information about phpexperts/postgres-for-laravel
Files in phpexperts/postgres-for-laravel
Package postgres-for-laravel
Short Description An ease-of-use library for using PostgreSQL with Laravel.
License MIT
Homepage https://www.phpexperts.pro/
Informations about the package postgres-for-laravel
Postgres For Laravel Library
[![TravisCI]()]() [![Maintainability]()]() [![Test Coverage]()]()
Postgres For Laravel is a PHP Experts, Inc., Project meant to ease the use of the PostgreSQL database in Laravel.
Installation
Via Composer
Usage
The library should be ready to be used immediately after including via composer.
PostgreSQL Timestamps
Postgres' timestamp support is extremely suprior to MySQL's. Yet, Laravel only supports the dumbed-down timestamps by default. For best performance -including- both timezone-aware and millisecond resolution timestamps, it is best to let POstgres itself handle every table's timestamps. To do this, do the following:
vendor | project | created_at | updated_at
------------+----------------------+----------------------------+----------------------------
phpexperts | simple-dto | 2020-04-30 23:35:00 | 2023-07-18 19:08:47
phpexperts | rest-speaker | 2023-07-30 09:35:53 | 2023-07-30 09:37:37
phpexperts | postgres-for-laravel | 2023-12-14 17:58:46.381623 | 2023-12-14 17:58:46.417537
Automatic Autowiring
- Extend every model from PHPExperts\PostgresForLaravel\PostgresModel.
- Run
./artisan migrate
Manual Wiring
- Add
public $timestamps = false;
to your Model. - Create a new migration:
./artisan make:migration use_native_postgres_timestamps
- Add the following code to the migration:
Use cases
✔ Use PostgreSQL native timestamp generation code.
Testing
Contributors
Theodore R. Smith [email protected]
GPG Fingerprint: 4BF8 2613 1C34 87AC D28F 2AD8 EB24 A91D D612 5690
CEO: PHP Experts, Inc.
License
MIT license. Please see the license file for more information. :wq