├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── CommandValidatorServiceProvider.php └── HasCommandValidator.php └── tests ├── CommandValidatorTest.php └── DummyCommand.php /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /vendor 3 | /build 4 | composer.lock 5 | .phpunit.result.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CommandValidatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/src/CommandValidatorServiceProvider.php -------------------------------------------------------------------------------- /src/HasCommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/src/HasCommandValidator.php -------------------------------------------------------------------------------- /tests/CommandValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/tests/CommandValidatorTest.php -------------------------------------------------------------------------------- /tests/DummyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/command-validator/HEAD/tests/DummyCommand.php --------------------------------------------------------------------------------