, (*1)
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., (*2)
Install
composer require byte5digital/laravel-informix
, (*3)
Publish config file:, (*4)
$ 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!, (*5)
Configs:, (*6)
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., (*7)
Contributing
Please see CONTRIBUTING for details., (*8)
Security
If you discover any security-related issues, please email mwege@byte5.de instead of using the issue tracker., (*9)
License
The MIT License (MIT). Please see License File for more information., (*10)