dev-develop
dev-develop https://indigophp.comFuelPHP DBAL integration
MIT
The Requires
by MĂĄrk SĂĄgi-KazĂĄr
dbal fuelphp
FuelPHP DBAL integration
This package is a wrapper around doctrine/dbal package., (*2)
Via Composer, (*3)
``` bash $ composer require indigophp/fuelphp-dbal, (*4)
## Usage Simply install this package to be able to use DBAL inside FuelPHP. ### Configuration ``` php 'dbname' => 'database' 'host' => 'localhost' 'port' => 1234 'user' => 'user', 'password' => 'secret', 'driver' => 'pdo_mysql', 'driver_class' => 'MyNamespace\\MyDriverImpl', // the DBAL driverClass option 'options' => array( // the DBAL driverOptions option 'foo' => 'bar', ), 'path' => '', 'wrapper_class' => 'MyDoctrineDbalConnectionWrapper', // the DBAL wrapperClass option 'charset' => 'UTF8', 'profiling' => true, 'mapping_types' => array( 'enum' => 'string', ), 'types' => array( 'custom' => 'MyCustomType', ),
Please see CONTRIBUTING for details., (*5)
The MIT License (MIT). Please see License File for more information., (*6)
FuelPHP DBAL integration
MIT
dbal fuelphp