FriendsOfPHP / well-known-implementations

Help reduce the proliferation of same-abstraction implementations in vendor directories.
MIT License
75 stars 1 forks source link

Add support for Phalcon v4 #3

Closed nicolas-grekas closed 1 year ago

nicolas-grekas commented 1 year ago

Phalcon v5 removed support for PSRs, but they are available in v4 and should be in v6. See https://github.com/phalcon/cphalcon/issues/15929

nicolas-grekas commented 1 year ago

Phalcon's classes are final and cannot be aliases (only userland classes can be) This means the only way to add support for Phalcon is to proxy all PSR-7 interfaces. Since Phalcon v5 removed support for PSRs, let's wait for v6.

See also https://github.com/php/php-src/issues/9826