├── .github └── workflows │ └── php.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── chop ├── composer.json ├── phpcs.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src └── Kernel.php └── tests └── KernelTest.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/README.md -------------------------------------------------------------------------------- /bin/chop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/bin/chop -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /tests/KernelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanderdlm/chop/HEAD/tests/KernelTest.php --------------------------------------------------------------------------------