summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/package.xml
blob: 2087c27f80b15093df57812708856cef629256e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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>