empari / files
Management Files for Laravel
5.5.4
2017-11-06 19:28 UTC
Requires
- php: ^7.0
- cviebrock/eloquent-sluggable: ^4.2
- empari/laravel-support: 5.5.*
- illuminate/database: 5.5.*
- illuminate/http: 5.5.*
- illuminate/support: 5.5.*
- intervention/image: ^2.4
- league/flysystem-aws-s3-v3: ^1.0
- league/fractal: ^0.17
- prettus/l5-repository: ^2.6
- spatie/laravel-fractal: ^5.2
- spatie/laravel-tags: ^2.0
Requires (Dev)
- phpunit/phpunit: ~6.0
README
Management Files for Laravel.
Installation
Composer
Execute the following command to get the latest version of the package:
composer require empari/gfiles
Laravel
In your config/app.php
add Empari\Files\FilesServiceProvider::class
to the end of the providers
array:
'providers' => [ ... Empari\Files\FilesServiceProvider::class, ],
Publish Configuration
php artisan vendor:publish --provider "Empari/Files/FilesServiceProvider"
Migrate the new tables
php artisan migrate