xisodev / laravel-filemanager
파일을 업로드하거나 이미지를 편집할 수 있는 파일관리자 (UniSharp/Laravel-filemanager 를 Fork 하였습니다.) 입니다.
v2.1.1
2020-04-18 08:53 UTC
Requires
- php: >=7.2.0
- ext-exif: *
- ext-fileinfo: *
- illuminate/config: 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0
- illuminate/container: 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0
- illuminate/filesystem: 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0
- illuminate/http: 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0
- illuminate/support: 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0
- intervention/image: 2.*
Requires (Dev)
- mockery/mockery: ^0.9.9
- phpunit/phpunit: ^6.2
- squizlabs/php_codesniffer: ^3.1
Suggests
- ext-gd: to use GD library based image processing.
- ext-imagick: to use Imagick based image processing.
This package is auto-updated.
Last update: 2026-05-18 22:15:53 UTC
README
AMUZ CMS 를 위한 전용파일매니저로, README에 모든 설정내용을 기재하지 않습니다.
install note
`composer require xisodev/laravel-filemanager``php artisan vendor:publish --tag=lfm_config`
`php artisan vendor:publish --tag=lfm_public`
`php artisan storage:link`
기본 라우트를 프로젝트에 등록하려면 routes/web.php 에 다음 코드를 등록합니다.
```php Route::group(['prefix' => 'laravel-filemanager', 'middleware' => ['web', 'auth']], function () { \XisoDev\LaravelFilemanager\Lfm::routes(); }); ```모든 설정을 커스텀하려는 경우
아래 명령을 실행하여 App/Handlers/LfmConfigHandler.php 를 복제한 후 편집
`php artisan vendor:publish --tag=lfm_handler`버전이 업데이트 된 경우
업데이트 전에 반드시 App/Handler/ConfigHandler.php 는 백업하길 권장합니다.
composer update xisodev/laravel-filemanager
php artisan vendor:publish --tag=lfm_view --force
php artisan vendor:publish --tag=lfm_public --force
php artisan vendor:publish --tag=lfm_config --force
php artisan route:clear
php artisan config:clear