storage enhancements
[m6w6/pq-gateway] / README.md
1 # pq-gateway
2
3 A gateway and data mapper implementation
4 for [ext-pq](http://git.php.net/?p=pecl/database/pq.git;a=summary).
5
6 ## Docs
7
8 https://mdref.m6w6.name/pq-gateway
9
10 ## News
11 * ***2015-??-??:*** 2.2.0
12 * ***2015-05-20:*** 2.1.0 tagged
13 * ***2014-10-15:*** 2.0.0 tagged
14 * ***2013-05-15:*** 1.1.0 tagged
15 * ***2013-05-03:*** 1.0.0 tagged
16
17 ## ChangeLog
18
19 ### 2.2.0
20 * Added pq\Mapper
21 * pq\Gateway\Cell is only considered dirty if updated data differs
22 * pq\Query\ExecutorInterface::execute()'s 2nd parameter `callable $callback` is
23 now optional
24
25 ### 2.1.0
26 * Added pq\Query\AsyncExecutor::setCallbacks(callable $init, callable $done, callable $then)
27 and removed soft dependency on reactphp/promise
28 * Fixed pq\Gateway\Table::with()'s relation handling when source table equals foreign table
29
30 ### 2.0.0
31 * Published documentation
32 * Added support for pecl/pq-0.5
33 * Refactored relations
34
35
36 ### 1.1.0
37 * Added support for one-dimensional arrays
38 * Added pq\Gateway\Table\Attributes (type support for input parameters)
39
40 ### 1.0.0
41 * First stable release