byte5digital / laravel-informix
Informix DB driver for Laravel 5
Installs: 348
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 2
Type:package
Requires
- php: >=7.0
- illuminate/database: 5.5.*
- illuminate/support: 5.5.*
This package is not auto-updated.
Last update: 2022-02-01 13:12:27 UTC
README
Laravel-ifx is an Informix Database Driver package for Laravel Framework - thanks @taylorotwell. Laravel-ifx is an extension of Illuminate/Database that uses either the PDO extension wrapped into the PDO namespace.
Install
composer require byte5digital/laravel-informix
Publish config file:
$ php artisan vendor:publish --provider="Byte5\LaravelInformix\InformixDBServiceProvider`
Usage
Go to config/informix.php
and change your settings as you like. Remember to store sensitive data only in .env
file!
Configs:
return [ 'informix' => [ 'driver' => 'informix', 'host' => env('DB_IFX_HOST', 'localhost'), 'database' => env('DB_IFX_DATABASE', 'forge'), 'username' => env('DB_IFX_USERNAME', 'forge'), 'password' => env('DB_IFX_PASSWORD', ''), 'service' => env('DB_IFX_SERVICE', '11143'), 'server' => env('DB_IFX_SERVER', ''), 'db_locale' => 'en_US.819', 'client_locale' => 'en_US.819', 'db_encoding' => 'GBK', 'initSqls' => false, 'client_encoding' => 'UTF-8', 'prefix' => '' ], ];
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security-related issues, please email mwege@byte5.de instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.