codeguy / php-the-right-way

An easy-to-read, quick reference for PHP best practices, accepted coding standards, and links to authoritative tutorials around the Web
https://www.phptherightway.com
Other
9.04k stars 3.24k forks source link

Testing Tools: add PHPUnit Polyfills #914

Closed jrfnl closed 2 years ago

jrfnl commented 2 years ago

The PHPUnit Polyfills were created to allow devs to write tests for the latest version of PHPUnit, while still allowing those tests to run on older PHPUnit versions.

Full disclosure: I'm the author of the library.

Note: this library is endorsed by the author of PHPUnit as the way to support PHPUnit cross-version compatible tests.

matthewtrask commented 2 years ago

thank you!