├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Commands │ ├── Audit.php │ ├── GetRunCmd.php │ ├── Install.php │ ├── Run.php │ ├── SkipOnce.php │ ├── Uninstall.php │ ├── Update.php │ └── Validate.php ├── FileJson.php ├── Hook.php ├── Platform.php ├── Providers │ └── WhiskyServiceProvider.php └── Whisky.php ├── art ├── example.png ├── logo.fig ├── logo.svg └── whisky_glass.svg ├── bootstrap └── app.php ├── box.json ├── composer.json ├── config ├── app.php └── commands.php ├── phpstan.neon ├── phpunit.xml.dist ├── scripts ├── git-add-staged ├── php-artisan-test ├── phpstan-analyse-staged └── pint-staged ├── stubs └── whisky.json ├── tests ├── CreatesApplication.php ├── Feature │ ├── ArchTest.php │ ├── InstallTest.php │ ├── RunTest.php │ └── SkipOnceTest.php ├── Pest.php ├── TestCase.php ├── Unit │ ├── ExampleTest.php │ ├── HookTest.php │ └── ValidationFileJsonTest.php └── tmp │ └── .gitignore ├── whisky └── whisky.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/README.md -------------------------------------------------------------------------------- /app/Commands/Audit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/Audit.php -------------------------------------------------------------------------------- /app/Commands/GetRunCmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/GetRunCmd.php -------------------------------------------------------------------------------- /app/Commands/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/Install.php -------------------------------------------------------------------------------- /app/Commands/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/Run.php -------------------------------------------------------------------------------- /app/Commands/SkipOnce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/SkipOnce.php -------------------------------------------------------------------------------- /app/Commands/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/Uninstall.php -------------------------------------------------------------------------------- /app/Commands/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/Update.php -------------------------------------------------------------------------------- /app/Commands/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Commands/Validate.php -------------------------------------------------------------------------------- /app/FileJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/FileJson.php -------------------------------------------------------------------------------- /app/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Hook.php -------------------------------------------------------------------------------- /app/Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Platform.php -------------------------------------------------------------------------------- /app/Providers/WhiskyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Providers/WhiskyServiceProvider.php -------------------------------------------------------------------------------- /app/Whisky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/app/Whisky.php -------------------------------------------------------------------------------- /art/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/art/example.png -------------------------------------------------------------------------------- /art/logo.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/art/logo.fig -------------------------------------------------------------------------------- /art/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/art/logo.svg -------------------------------------------------------------------------------- /art/whisky_glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/art/whisky_glass.svg -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/config/app.php -------------------------------------------------------------------------------- /config/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/config/commands.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /scripts/git-add-staged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/scripts/git-add-staged -------------------------------------------------------------------------------- /scripts/php-artisan-test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | php artisan test 4 | -------------------------------------------------------------------------------- /scripts/phpstan-analyse-staged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/scripts/phpstan-analyse-staged -------------------------------------------------------------------------------- /scripts/pint-staged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/scripts/pint-staged -------------------------------------------------------------------------------- /stubs/whisky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/stubs/whisky.json -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ArchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Feature/ArchTest.php -------------------------------------------------------------------------------- /tests/Feature/InstallTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Feature/InstallTest.php -------------------------------------------------------------------------------- /tests/Feature/RunTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Feature/RunTest.php -------------------------------------------------------------------------------- /tests/Feature/SkipOnceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Feature/SkipOnceTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/HookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Unit/HookTest.php -------------------------------------------------------------------------------- /tests/Unit/ValidationFileJsonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/tests/Unit/ValidationFileJsonTest.php -------------------------------------------------------------------------------- /tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /whisky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/whisky -------------------------------------------------------------------------------- /whisky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjektGopher/whisky/HEAD/whisky.json --------------------------------------------------------------------------------