nailfor / couchbase
There is no license information available for the latest version (v0.1.6) of this package.
v0.1.6
2024-04-24 15:40 UTC
This package is not auto-updated.
Last update: 2025-01-01 18:48:13 UTC
README
Couchbase client for Eloquent ORM
Features
All models are inherited from Illuminate\Database\Eloquent\Model so most methods work natively
Installation
The preferred way to install this extension is through composer.
Either run
composer require nailfor/couchbase
or add
"nailfor/couchbase" : "*"
to the require section of your application's composer.json
file.
Configure
Add config/app.php
'providers' => [ ... nailfor\Couchbase\CouchbaseServiceProvider::class,
and config/database.php
'connections' => [ ... 'couchbase' => [ //the name of connection in your models(default) 'driver' => 'couchbase', 'username' => 'username', 'password' => 'password', ],
Credits
License
The GNU License (GNU). Please see License File for more information.