├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_or_support_request.md │ ├── documentation_request.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION ├── box.json.dist ├── composer.json ├── composer.lock ├── customize ├── Customizer.php └── templates │ ├── CHANGELOG.md │ ├── README.md │ └── VERSION ├── example ├── phpunit.xml.dist ├── src ├── Cli │ └── ExampleCommands.php └── Example.php └── tests ├── ExampleCommandsTest.php ├── ExampleTest.php └── src ├── CommandTesterInterface.php └── CommandTesterTrait.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_or_support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/.github/ISSUE_TEMPLATE/bug_report_or_support_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/.github/ISSUE_TEMPLATE/documentation_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.phar 3 | build 4 | tools 5 | vendor/ 6 | .phpunit.result.cache 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 4.0.3-dev 2 | -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/box.json.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/composer.lock -------------------------------------------------------------------------------- /customize/Customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/customize/Customizer.php -------------------------------------------------------------------------------- /customize/templates/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/customize/templates/CHANGELOG.md -------------------------------------------------------------------------------- /customize/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/customize/templates/README.md -------------------------------------------------------------------------------- /customize/templates/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0-dev 2 | -------------------------------------------------------------------------------- /example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/example -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Cli/ExampleCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/src/Cli/ExampleCommands.php -------------------------------------------------------------------------------- /src/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/src/Example.php -------------------------------------------------------------------------------- /tests/ExampleCommandsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/tests/ExampleCommandsTest.php -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/src/CommandTesterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/tests/src/CommandTesterInterface.php -------------------------------------------------------------------------------- /tests/src/CommandTesterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g1a/starter/HEAD/tests/src/CommandTesterTrait.php --------------------------------------------------------------------------------