├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ ├── php-cs-fixer.yml │ ├── run-tests.yml │ └── update-changelog.yml ├── .php_cs.cache ├── .php_cs.dist ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── laravel-directory-cleanup.php └── src ├── DirectoryCleaner.php ├── DirectoryCleanupCommand.php ├── DirectoryCleanupServiceProvider.php └── Policies ├── CleanupPolicy.php └── DeleteEverything.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://spatie.be/open-source/support-us 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.php_cs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.php_cs.cache -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-directory-cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/config/laravel-directory-cleanup.php -------------------------------------------------------------------------------- /src/DirectoryCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/src/DirectoryCleaner.php -------------------------------------------------------------------------------- /src/DirectoryCleanupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/src/DirectoryCleanupCommand.php -------------------------------------------------------------------------------- /src/DirectoryCleanupServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/src/DirectoryCleanupServiceProvider.php -------------------------------------------------------------------------------- /src/Policies/CleanupPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/src/Policies/CleanupPolicy.php -------------------------------------------------------------------------------- /src/Policies/DeleteEverything.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-directory-cleanup/HEAD/src/Policies/DeleteEverything.php --------------------------------------------------------------------------------