├── .github └── workflows │ └── php.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── auto-hard-deleter.php ├── cover.jpg ├── phpunit.xml ├── src ├── AutoHardDeleteServiceProvider.php └── HardDeleteExpiredCommand.php └── tests ├── AutoHardDeleterTest.php ├── HardDeleteExpiredTestCommand.php ├── Models └── SampleModel.php └── database ├── factories └── SampleModelFactory.php └── migrations └── 0000_00_00_000000_create_sample_models_test_table.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/composer.json -------------------------------------------------------------------------------- /config/auto-hard-deleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/config/auto-hard-deleter.php -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/cover.jpg -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AutoHardDeleteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/src/AutoHardDeleteServiceProvider.php -------------------------------------------------------------------------------- /src/HardDeleteExpiredCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/src/HardDeleteExpiredCommand.php -------------------------------------------------------------------------------- /tests/AutoHardDeleterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/tests/AutoHardDeleterTest.php -------------------------------------------------------------------------------- /tests/HardDeleteExpiredTestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/tests/HardDeleteExpiredTestCommand.php -------------------------------------------------------------------------------- /tests/Models/SampleModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/tests/Models/SampleModel.php -------------------------------------------------------------------------------- /tests/database/factories/SampleModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/tests/database/factories/SampleModelFactory.php -------------------------------------------------------------------------------- /tests/database/migrations/0000_00_00_000000_create_sample_models_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiavashBamshadnia/Laravel-Auto-Hard-Deleter/HEAD/tests/database/migrations/0000_00_00_000000_create_sample_models_test_table.php --------------------------------------------------------------------------------