forked from php/pecl-database-pdo_oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
85 lines (71 loc) · 3.14 KB
/
package.xml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.4.11" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>pdo_oci</name>
<channel>pecl.php.net</channel>
<summary>Extension for Oracle Database</summary>
<description>
The PDO_OCI extension lets you access Oracle Database.
Documentation is at https://www.php.net/pdo_oci
Use 'pecl install pdo_oci' to install for PHP 8.3.
For older PHP versions, use php_pdo_oci.dll from the Windows PHP release bundle, or build from the PHP source code by running:
phpize
./configure -with-pdo_oci=shared,instantclient,/path/to/instant/client/lib
make install
To complete installation, add "extension=pdo_oci.so" to your php.ini file.
PHP is available from https://www.php.net/releases/
The PDO_OCI extension can be linked with Oracle client libraries from Oracle Database 11.2 or later. These libraries are found in your database installation, or in the free Oracle Instant Client from https://www.oracle.com/database/technologies/instant-client.html Install the "Basic" or "Basic Light" Instant Client package. If building from source, then also install the SDK package.
Oracle's standard cross-version connectivity applies. For example, PHP PDO_OCI linked with Oracle Client 19c can connect to Oracle Database 11.2 onward. See Oracle's note "Oracle Client / Server Interoperability Support" (ID 207303.1) for details.
</description>
<lead>
<name>Christopher Jones</name>
<user>sixd</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-08-21</date>
<time>12:00:00</time>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
This version is for PHP 8.3 only.
Requires Oracle Client libraries from 11.2 or later.
</notes>
<contents>
<dir name="/">
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="CREDITS" role="doc" />
<file name="LICENSE" role="doc" />
<file name="oci_driver.c" role="src" />
<file name="oci_statement.c" role="src" />
<file name="pdo_oci.c" role="src" />
<file name="php_pdo_oci.h" role="src" />
<file name="php_pdo_oci_int.h" role="src" />
<file name="README.md" role="doc" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>8.3.0</min>
</php>
<pearinstaller>
<min>1.10</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>pdo_oci</providesextension>
<extsrcrelease>
<configureoption default="autodetect" name="with-pdo-oci" prompt="Please provide the path to the ORACLE_HOME directory. Use 'instantclient,/path/to/instant/client/lib' if you're compiling with Oracle Instant Client" />
</extsrcrelease>
</package>