├── .phpunit.cache └── test-results ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── queued-db-cleanup.php └── src ├── CleanConfig.php ├── CleanDatabaseJobFactory.php ├── Events ├── CleanDatabaseCompleted.php ├── CleanDatabasePassCompleted.php └── CleanDatabasePassStarting.php ├── Exceptions ├── CouldNotCreateJob.php └── InvalidDatabaseCleanupJobClass.php ├── Jobs └── CleanDatabaseJob.php └── LaravelQueuedDbCleanupServiceProvider.php /.phpunit.cache/test-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/.phpunit.cache/test-results -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/composer.json -------------------------------------------------------------------------------- /config/queued-db-cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/config/queued-db-cleanup.php -------------------------------------------------------------------------------- /src/CleanConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/CleanConfig.php -------------------------------------------------------------------------------- /src/CleanDatabaseJobFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/CleanDatabaseJobFactory.php -------------------------------------------------------------------------------- /src/Events/CleanDatabaseCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/Events/CleanDatabaseCompleted.php -------------------------------------------------------------------------------- /src/Events/CleanDatabasePassCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/Events/CleanDatabasePassCompleted.php -------------------------------------------------------------------------------- /src/Events/CleanDatabasePassStarting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/Events/CleanDatabasePassStarting.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotCreateJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/Exceptions/CouldNotCreateJob.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidDatabaseCleanupJobClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/Exceptions/InvalidDatabaseCleanupJobClass.php -------------------------------------------------------------------------------- /src/Jobs/CleanDatabaseJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/Jobs/CleanDatabaseJob.php -------------------------------------------------------------------------------- /src/LaravelQueuedDbCleanupServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-queued-db-cleanup/HEAD/src/LaravelQueuedDbCleanupServiceProvider.php --------------------------------------------------------------------------------