├── .github └── workflows │ ├── ci.yaml │ └── cs.yaml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── PolyfillTrait.php ├── PolyfillTrait6.php ├── PolyfillTrait7.php └── aliases.php └── tests └── PolyfillTest.php /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/cs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/.github/workflows/cs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/PolyfillTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/src/PolyfillTrait.php -------------------------------------------------------------------------------- /src/PolyfillTrait6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/src/PolyfillTrait6.php -------------------------------------------------------------------------------- /src/PolyfillTrait7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/src/PolyfillTrait7.php -------------------------------------------------------------------------------- /src/aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/src/aliases.php -------------------------------------------------------------------------------- /tests/PolyfillTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPUnitGoodPractices/polyfill/HEAD/tests/PolyfillTest.php --------------------------------------------------------------------------------