Skip to content

hadimazalan/laravel-oci8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel 4|5 Oracle (OCI8) DB Support

###Laravel-OCI8

Build Status Total Downloads Latest Stable Version Latest Unstable Version Scrutinizer Code Quality License

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

###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.

###Buy me a beer Click here to lend your support to: Laravel-OCI8 and make a donation at pledgie.com !

About

Oracle DB driver for Laravel 4|5 via OCI8

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%