├── .editorconfig ├── .github └── workflows │ └── lint-and-test.yml ├── .gitignore ├── .nvmrc ├── .php_cs.dist ├── .scrutinizer.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composer.json ├── composer.lock ├── package.json ├── phpunit.xml ├── src └── Rules │ ├── ApplyMap.php │ ├── ApplyUnless.php │ └── ApplyWhen.php └── tests └── Rules ├── ApplyMapTest.php ├── ApplyUnlessTest.php └── ApplyWhenTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/lint-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/.github/workflows/lint-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v10.16 2 | -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/composer.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Rules/ApplyMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/src/Rules/ApplyMap.php -------------------------------------------------------------------------------- /src/Rules/ApplyUnless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/src/Rules/ApplyUnless.php -------------------------------------------------------------------------------- /src/Rules/ApplyWhen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/src/Rules/ApplyWhen.php -------------------------------------------------------------------------------- /tests/Rules/ApplyMapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/tests/Rules/ApplyMapTest.php -------------------------------------------------------------------------------- /tests/Rules/ApplyUnlessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/tests/Rules/ApplyUnlessTest.php -------------------------------------------------------------------------------- /tests/Rules/ApplyWhenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monooso/apposite/HEAD/tests/Rules/ApplyWhenTest.php --------------------------------------------------------------------------------