nailfor / couchbase
Installs: 110
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/nailfor/couchbase
This package is not auto-updated.
Last update: 2025-10-22 22:39:26 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.