archytech/laramix is a Laravel package for informix driver for laravel.
It currently has 0 GitHub stars and 36 downloads on Packagist (latest version v1.0.1).
Install it with composer require archytech/laramix.
Discover more Laravel packages by archytech
or browse all Laravel packages to compare alternatives.
Last updated
laramix is an Informix Driver Package for Laravel Framework - thanks to @taylorotwell. laramix is an extension of Illuminate/Database that uses either the PDO extension wrapped into the PDO namespace.
^7.2^6.0|^7.0^6.0|^7.0^6.0|^7.0^6.0|^7.0^6.0|^7.0^6.0|^7.0Require this package in the composer.json of your laravel project. This will download the requirements package:
composer require archytech/laramix
Once Composer has installed or updated, you need to register Informix Driver. Open up config/app.php and find the providers key and add:
'providers' => [
/*
* Package Service Providers ...
*/
Archytech\Laravel\Ifx\InformixServiceProvider::class,
]
Finally you need to publish a configuration file by running the following artisan command.
php artisan vendor:publish --provider="Archytech\Laravel\Ifx\InformixServiceProvider"
This will copy the configuration file to config/informix.php
.env filesAdd this configuration to .env file in the root of your project:
# Informix #
DB_CONNECTION=informix
DB_IFX_HOST=127.0.0.1
DB_IFX_SERVICE=9188
DB_IFX_DATABASE=laravel
DB_IFX_USERNAME=informix
DB_IFX_PASSWORD=
DB_IFX_SERVER=ol_informix07
DB_IFX_URI=
DB_IFX_TOKEN=
Visit Database: Getting Started
Licensed under the MIT License.