Package Data | |
---|---|
Maintainer Username: | bluora |
Maintainer Contact: | rocco@bluora.com.au (Rocco Howard) |
Package Create Date: | 2016-11-15 |
Package Last Update: | 2017-09-08 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:03:22 |
Package Statistics | |
---|---|
Total Downloads: | 639 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 6 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package has been developed by H&H|Digital, an Australian botique developer. Visit us at hnh.digital.
Provides a Laravel console command wrapper around clamscan.
Via composer:
$ composer require-dev bluora/laravel-virus-scanner dev-master
Enable the console command by editing app/Console/Kernel.php:
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
...
\Bluora\LaravelVirusScanner\VirusScannerCommand::class,
];
Run the console command using the following:
# php artisan virus:scan storage
The path can be a file or a folder.
Any infected files are renamed by prepending '.virus.'.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.