###Laravel-OCI8
Laravel-OCI8 is an Oracle Database Driver package for Laravel. Laravel-OCI8 is an extension of Illuminate/Database that uses OCI8 extension to communicate with Oracle. Thanks to @taylorotwell. ##Documentations
- You will find user friendly and updated documentation in the wiki here: Laravel-OCI8 Wiki
- You will find updated API documentation here: Laravel-OCI8 API
###Quick Installation
composer require yajra/laravel-oci8:~2.0
###Service Provider
'yajra\Oci8\Oci8ServiceProvider',
###Configuration
Then setup a valid database configuration using the driver oracle
. Configure your connection as usual with:
Note: For Laravel Lumen configuration, make sure you have a
config/database.php
file on your project and append the configuration below:
'oracle' => array(
'driver' => 'oracle',
'host' => 'oracle.host',
'port' => '1521',
'database' => 'xe',
'username' => 'hr',
'password' => 'hr',
'charset' => 'AL32UTF8',
'prefix' => '',
)
And run your laravel installation...
###License
Licensed under the MIT License.