fabs/couchdb2

v1.1.0 2018-09-30 10:30 UTC

This package is not auto-updated.

Last update: 2024-09-29 02:07:56 UTC


README

为 PHP 开发者提供使用 CouchDB2 方法的库。

安装

按照如下方式安装库 composer require fabs/couchdb2:dev-develop

快速入门

// Create an instance
$config = new Config('127.0.0.1', 5984, 'username', 'password');
$client = new Couch($config);

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

## More...