[PECL-CVS] [pecl-database-pdo_oci] main: Add installation instructions for PECL and PIE

[email protected] (Sharad Chandran R via GitHub) Thu, 8 Jan 2026 05:57:33 +0000
Newsgroups php.pecl.cvs
Message-ID <[email protected]>
Author: Sharad Chandran R (sharadraju)
Committer: GitHub (web-flow)
Pusher: sharadraju
Date: 2026-01-08T11:27:31+05:30

Commit: https://github.com/php/pecl-database-pdo_oci/commit/1d4585433bd08ea581c1167819f6caa69eb0d1f0
Raw diff: https://github.com/php/pecl-database-pdo_oci/commit/1d4585433bd08ea581c1167819f6caa69eb0d1f0.diff

Add installation instructions for PECL and PIE

Changed paths:
  M  README.md


Diff:

diff --git a/README.md b/README.md
index 04d9e5b..90350e3 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,10 @@ Documentation is at https://www.php.net/pdo_oci
 Installation
 ------------
 
+**PECL**
+
+The PDO_OCI extension is available in the PECL repository [here](https://pecl.php.net/package/PDO_OCI).
+
 Use `pecl install pdo_oci` to install for PHP 8.3 and newer versions.
 
 For older PHP versions, use php_pdo_oci.dll from the Windows PHP release
@@ -25,6 +29,15 @@ make install
 To complete installation, add "extension=pdo_oci.so" or
 "extension=php_pdo_oci.dll" (Windows) to your php.ini file.
 
+**PIE**
+
+The PHP OCI8 extension is also available in the PIE Packagist repository [here](https://packagist.org/packages/pecl/pdo_oci).
+
+To install from PIE, use the [pie](https://github.com/php/pie/releases) utility and run:
+```
+pie install pecl/pdo_oci
+```
+
 Tests
 -----