PHPUnit errors out on startup when the ctype
extension is not loaded but a polyfill for it was installed
#5662
Labels
ctype
extension is not loaded but a polyfill for it was installed
#5662
Composer automatically installs
symfony/polyfill-ctype
when a package requiresext-ctype
and thectype
extension is not loaded.PHPUnit's bootstrap script uses
extension_loaded('ctype')
to check whether thectype
extension is available on startup and errors out whenfalse
is returned.See #5661 (comment) for details.
The text was updated successfully, but these errors were encountered: