By default lumen doesn't support laravel file system. In order to integrate to lumen we need follow these instructions:
- composer require league/flysystem
- Copy filesystems config file from Laravel ( https://github.com/laravel/laravel/blob/master/config/filesystems.php ) to your local Lumen installation
document_root/config
- Bind
filesystem
to IoC for example indocument_root/bootstrap/app.php
by adding this code lines:
`` $app->singleton('filesystem', function ($app) {