What are the potential issues with using installer versions of PHP for extensions?

Potential issues with using installer versions of PHP for extensions include compatibility issues with the PHP version being used, potential security vulnerabilities, and difficulties in managing and updating the extensions. To solve this issue, it is recommended to manually install extensions using a package manager like Composer, which allows for better control over dependencies and versions.

composer require vendor/package