├── .editorconfig ├── .github ├── FUNDING.yml ├── SECURITY.md └── workflows │ ├── backward-compat.yml │ ├── infection.yml │ ├── phpstan.yml │ ├── pint.yml │ └── tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config └── artisan-release.php ├── infection.json5 ├── phpstan.neon ├── phpunit.xml.dist ├── pint.json ├── src ├── ArtisanReleaseServiceProvider.php └── ReleaseCommand.php └── tests ├── Fakes └── Service.php ├── ReleaseCommandTest.php └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://paypal.com/donate/?hosted_button_id=KHLEL8PFS4AXJ"] 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/backward-compat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.github/workflows/backward-compat.yml -------------------------------------------------------------------------------- /.github/workflows/infection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.github/workflows/infection.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/pint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.github/workflows/pint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/composer.json -------------------------------------------------------------------------------- /config/artisan-release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/config/artisan-release.php -------------------------------------------------------------------------------- /infection.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/infection.json5 -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/pint.json -------------------------------------------------------------------------------- /src/ArtisanReleaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/src/ArtisanReleaseServiceProvider.php -------------------------------------------------------------------------------- /src/ReleaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/src/ReleaseCommand.php -------------------------------------------------------------------------------- /tests/Fakes/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/tests/Fakes/Service.php -------------------------------------------------------------------------------- /tests/ReleaseCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/tests/ReleaseCommandTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/artisan-release-command/HEAD/tests/TestCase.php --------------------------------------------------------------------------------