php-src/ext/pdo_sqlite/package.xml
Wez Furlong eb5e0d6d12 Add package.xml
(not quite ready for release)
2004-09-19 19:50:06 +00:00

55 lines
1.7 KiB
XML
Executable File

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package version="1.0">
<name>PDO_SQLITE</name>
<summary>SQLite v3 Interface driver for PDO</summary>
<maintainers>
<maintainer>
<user>wez</user>
<name>Wez Furlong</name>
<email>wez@php.net</email>
<role>lead</role>
</maintainer>
</maintainers>
<configureoptions>
<configureoption name="with-pdo-sqlite" prompt="Path to your sqlite3 install"/>
</configureoptions>
<description>
This extension provides an SQLite v3 driver for PDO.
SQLite V3 is NOT compatible with the bundled SQLite in PHP 5, but is a significant
step forwards, featuring complete utf-8 support, native support for blobs,
native support for prepared statements with bound parameters and improved
concurrency.
</description>
<license>PHP</license>
<release>
<state>alpha</state>
<version>0.1</version>
<date>2004-09-19</date>
<notes>
You need to install the PDO core module before you can make use of this one.
You need to download and install SQLite V3 from http://sqlite.org to
make use of this driver.
There is no windows binary available yet.
</notes>
<filelist>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="pdo_sqlite.c"/>
<file role="src" name="sqlite_driver.c"/>
<file role="src" name="sqlite_statement.c"/>
<file role="src" name="php_pdo_sqlite.h"/>
<file role="src" name="php_pdo_sqlite_int.h"/>
<file role="doc" name="CREDITS"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="5.0.1"/>
<dep type="ext" rel="ge" name="pdo" version="0.1"/>
</deps>
</release>
</package>