├── .github ├── dependabot.yaml └── workflows │ └── ci.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── bin └── terminable-loop-command.sh ├── codecov.yml ├── composer.json ├── phpstan.neon ├── phpunit.xml ├── psalm-baseline.xml ├── psalm.xml ├── rector.php ├── src └── AbstractTerminableCommand.php └── tests ├── E2E └── TerminateCommandTest.php ├── Stub ├── StubTerminableCommand.php └── console └── Unit └── AbstractTerminableCommandTest.php /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | .*cache 4 | -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/README.md -------------------------------------------------------------------------------- /bin/terminable-loop-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/bin/terminable-loop-command.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/phpunit.xml -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/rector.php -------------------------------------------------------------------------------- /src/AbstractTerminableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/src/AbstractTerminableCommand.php -------------------------------------------------------------------------------- /tests/E2E/TerminateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/tests/E2E/TerminateCommandTest.php -------------------------------------------------------------------------------- /tests/Stub/StubTerminableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/tests/Stub/StubTerminableCommand.php -------------------------------------------------------------------------------- /tests/Stub/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/tests/Stub/console -------------------------------------------------------------------------------- /tests/Unit/AbstractTerminableCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facile-it/terminable-loop-command/HEAD/tests/Unit/AbstractTerminableCommandTest.php --------------------------------------------------------------------------------