dievelop / laravel-purge
There is no license information available for the latest version (dev-master) of this package.
Remove expired files from laravel filesystem disks directories
dev-master
2019-04-03 02:15 UTC
Requires
- php: ^7.1
- illuminate/support: >=5.0
- nesbot/carbon: ^1.0|^2.0
Requires (Dev)
- mockery/mockery: ^1.1
- orchestra/testbench: ~3.8.0
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2026-03-29 00:29:54 UTC
README
Note: package is not yet production ready.
Installation
composer require dievelop/laravel-purge
In Laravel 5.5 the service provider will automatically get registered.
In older versions of the framework just add the service provider in
config/app.php file:
'providers' => [ Dievelop\LaravelPurge\ServiceProvider::class, ];
Usage
...
Disk Configuration
...
Artisan
...
Manual Usage
...