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.
- dev-master
- v2.1.1
- v2.1.0
- v2.0.1
- v2.0.0
- v2.0.0-alpha8
- v2.0.0-alpha7
- v2.0.0-alpha6
- v2.0.0-alpha5
- v2.0.0-alpha4
- v2.0.0-alpha3
- v2.0.0-alpha2
- v2.0.0-alpha
- v1.9.2
- v1.9.1
- v1.9.0
- v1.8.5
- v1.8.4
- v1.8.3
- v1.8.2.2
- v1.8.2.1
- v1.8.2
- v1.8.2-alpha
- v1.8.1
- v1.8.0
- v1.7.7
- v1.7.6
- v1.7.5
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v1.7-alpha
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.0-alpha
- 1.3.0-alpha
- 1.2.0
- 1.1.1
- 1.1.0
- 1.1.0-alpha
- 1.0.0
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.3.1
- 0.3.0
- 0.2.0
- 0.1.0
This package is auto-updated.
Last update: 2024-11-18 18:49:00 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