From: Chris Wright Date: Sun, 14 Dec 2014 15:24:11 +0000 (+0000) Subject: Add README.md for github X-Git-Tag: v0.6.0RC1~19^2 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=commitdiff_plain;h=3c7eea4bb454d4b40b3e59351bf8ef96808c9605 Add README.md for github --- diff --git a/README.md b/README.md new file mode 100644 index 0000000..e251e37 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +pecl/pq +======= + +[![Build Status](https://travis-ci.org/php/pecl-database-pq.svg?branch=master)](https://travis-ci.org/php/pecl-database-pq) + +About +----- + +This is a modern binding to the mature [libpq](http://www.postgresql.org/docs/current/static/libpq.html), the official PostgreSQL C-client library. + +Highlights: + +- Nearly 100% support for asynchronous usage. +- Extended type support by pg_type. +- Fetching simple multi-dimensional array maps. +- Working [Gateway implementation](https://github.com/m6w6/pq-gateway). + +Installation +------------ + +This extension is hosted at [PECL](http://pecl.php.net/) and can be installed with [PEAR](http://pear.php.net/)'s `pecl` command: + + # pecl install pq + +Dependencies +------------ + +This extension unconditionally depends on the pre-loaded presence of the following PHP extensions: + +- [raphf](http://pecl.php.net/package/raphf) +- [spl](http://php.net/spl) + +Documentation +------------- + +Documentation is available [here](http://devel-m6w6.rhcloud.com/mdref/pq).