Skip to content

vovanmix/filemanager-laravel4-s3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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" "../"

About

FileManager for Laravel 4 integrated with AWS S3

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 47.8%
  • HTML 27.8%
  • PHP 22.1%
  • CSS 2.3%