vovanmix / filemanager-laravel4-s3
Filemanager for Laravel 4 with S3 integration
Installs: 230
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 41
Language:JavaScript
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
- intervention/image: 2.*
This package is not auto-updated.
Last update: 2024-11-24 00:48:49 UTC
README
#Filemanager for Laravel 4 Based on https://github.com/simogeo/Filemanager
##Requires
"intervention/image": "2.*"
##Installation
Edit your composer.json
.
"require": {
"vovanmix/filemanager-laravel4-s3": "1.*"
}
Run
composer update
Add to your file app.php if you ant to use S3:
'Vovanmix\FilemanagerLaravel4S3\FilemanagerLaravelS3ServiceProvider',
For store file locally:
'Vovanmix\FilemanagerLaravel4S3\FilemanagerLaravelServiceProvider',
Add in routes.php
Route::group(array('before' => 'auth'), function(){
Route::controller('filemanager', 'FilemanagerLaravelController');
});
Copy your filemanager folder to public
php artisan asset:publish --path="vendor/Vovanmix/filemanager-laravel4-s3/public" "../"