diff options
| author | Remi Collet <remi@remirepo.net> | 2026-03-26 16:21:13 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-03-26 16:21:13 +0100 |
| commit | c1cd4da5528f80b0923c82d59feca4f56c2f964d (patch) | |
| tree | 3faff04dead07cb99061504cf291b93b61eecf89 /composer.json | |
| parent | 432cf9193f41a3ae26875346e29f2896bf4cf98b (diff) | |
sources from github
cleanup ZTS stuff
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..32859bb --- /dev/null +++ b/composer.json @@ -0,0 +1,33 @@ +{ + "name": "pecl/pdo_oci", + "type": "php-ext", + "description": "Use the PDO_OCI extension to access Oracle Database via PHP Data Objects (PDO) APIs", + "keywords": ["pdo_oci", "pdo", "oracle", "database"], + "homepage": "https://pecl.php.net/package/PDO_OCI", + "license": "PHP-3.01", + "authors": [ + { + "name": "Christopher Jones", + "email": "sixd@php.net", + "role": "Lead" + }, + { + "name": "Sharad Chandran R", + "email": "sharad.raju@oracle.com", + "role": "Lead" + } + ], + "require": { + "php": ">=8.3.0" + }, + "php-ext": { + "extension-name": "pdo_oci", + "configure-options": [ + { + "name": "with-pdo_oci", + "description": "Please provide the path to the ORACLE_HOME directory. Use 'instantclient,/path/to/instant/client/lib' if you're compiling with Oracle Instant Client", + "needs-value": true + } + ] + } +} |
