Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renepardon/php5-couchdb
PHP5 Extension to support CouchDB natively
https://github.com/renepardon/php5-couchdb
Last synced: 12 days ago
JSON representation
PHP5 Extension to support CouchDB natively
- Host: GitHub
- URL: https://github.com/renepardon/php5-couchdb
- Owner: renepardon
- Created: 2014-01-22T10:45:52.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-22T10:46:08.000Z (almost 11 years ago)
- Last Synced: 2023-03-15T11:45:26.631Z (over 1 year ago)
- Language: C
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Installation and compilation guide for php5-couchdb
===================================================$ sudo apt-get install libyajl-dev libyaijl2
$ cd vendor/pillowtalk
$ ./configure
$ cmake -DCMAKE_INSTALL_PREFIX=/usr
$ make
$ cd ../..The next command will install the library to **/usr/lib/libpillowtalk.so**
$ sudo make install
If not already done we can create the extension source with
$ pecl-gen -f description.xml
So you can start writing this extension from scratch again ;)
Now we configure our extension and compile/install it.$ phpize
$ ./configure
$ make
$ sudo make installDon't forget to add the following line to your php.ini file:
extension="php_couchdb.so"
You can also install with PEAR integration:
$ pear install package.xml