Skip to content

necipallef/CouchDB2-PHP-Client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CouchDB2-PHP-Client

Library that provides ways to use CouchDB2 for PHP developers.

Install

Install the library like this composer require fabs/couchdb2

Quick Start

// Create an instance
$config = new Config('http://my.couch.server.com', 5984, 'username', 'password');
$client = new Couch($config);

// Get document by ID
$doc = $client
       ->selectDatabase('test_database')
       ->getDoc('some_doc_id')
       ->execute();

TODO

## More...

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%