summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/sqlite/CREDITS2
-rw-r--r--ext/sqlite/TODO3
-rw-r--r--ext/sqlite/package.xml6
-rw-r--r--ext/sqlite/php_sqlite.h1
-rw-r--r--ext/sqlite/sqlite.c3
5 files changed, 10 insertions, 5 deletions
diff --git a/ext/sqlite/CREDITS b/ext/sqlite/CREDITS
index 526b5a7d33..bd253dd63b 100644
--- a/ext/sqlite/CREDITS
+++ b/ext/sqlite/CREDITS
@@ -1,2 +1,2 @@
sqlite
-Wez Furlong
+Wez Furlong, Tal Peer
diff --git a/ext/sqlite/TODO b/ext/sqlite/TODO
index 24940a9b3b..3f190670b7 100644
--- a/ext/sqlite/TODO
+++ b/ext/sqlite/TODO
@@ -1,6 +1,3 @@
-- Implement an aggregating php function handler for use in SQL statements and
- triggers etc.
-
- Add user-space callback for the authorizer function (this is potentially
very slow, so it needs to be implemented carefully).
diff --git a/ext/sqlite/package.xml b/ext/sqlite/package.xml
index 473246adf0..e659eedd98 100644
--- a/ext/sqlite/package.xml
+++ b/ext/sqlite/package.xml
@@ -10,6 +10,12 @@
<email>wez@php.net</email>
<role>lead</role>
</maintainer>
+ <maintainer>
+ <user>tal</user>
+ <name>Tal Peer</name>
+ <email>tal@php.net</name>
+ <role>developer</role>
+ </maintainer>
</maintainers>
<description>
SQLite is a C library that implements an embeddable SQL database engine.
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h
index 86fb3084d5..c05bba4c60 100644
--- a/ext/sqlite/php_sqlite.h
+++ b/ext/sqlite/php_sqlite.h
@@ -13,6 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Wez Furlong <wez@thebrainroom.com> |
+ | Tal Peer <tal@php.net |
+----------------------------------------------------------------------+
$Id$
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c
index d00ca3a47e..2c13a692b5 100644
--- a/ext/sqlite/sqlite.c
+++ b/ext/sqlite/sqlite.c
@@ -12,7 +12,8 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Author: Wez Furlong <wez@thebrainroom.com> |
+ | Authors: Wez Furlong <wez@thebrainroom.com> |
+ | Tal Peer <tal@php.net> |
+----------------------------------------------------------------------+
$Id$