php / pecl-database-pdo_oci

PDO extension to interact with Oracle databases
Other
1 stars 5 forks source link

Is this working with PHP 8.3? #4

Closed gido closed 1 month ago

gido commented 1 month ago

I'm trying to install PHP PDO_OCI on a project I'm upgrading to PHP 8.3 and I would like to know if this version of PHP is currently supported?

The README says:

Use pecl install pdo_oci to install for PHP 8.2.

If it's not currently the case, I could try to help (I didn't write in C but it could be possible with some guidance...).

Thanks! G.

cmb69 commented 1 month ago

PDO_OCI is still bundled with PHP-8.3. Only as of PHP 8.4.0, you would need to use this repository.

README should probably be updated to clarify this.

gido commented 1 month ago

Thank you for the (very quick) reply!

I wasn't aware that the extension was in the PHP-SRC repo. This is what I'm searching for. And now, I just learned that PHP extension PDO OCI will be unbundled since PHP 8.4+ (I found this RFC).

Yes, a clarification in the README and on this PECL page https://pecl.php.net/package/PDO_OCI could help users.