I need to use azure blob storage but the problem is i cann't find any reference or tutorial to apply azure blob storage in Lumen.
I only find azure blob in laravel. Here what i found,
https://matthewdaly.co.uk/blog/2016/10/24/creating-an-azure-storage-adapter-for-laravel/
I don't know how to put the code to config/filesystem.php, i cann't find it in Lumen Framework.
Would you like to give me some reference? Any help would appreciate.
thanks
Based on my research, By default lumen doesn't support laravel file system. In order to integrate to lumen,you could follow these instructions
Bind filesystem to IoC for example in document_root/bootstrap/app.php by adding this code lines:
$app->singleton('filesystem', function ($app) { return $app->loadComponent('filesystems', 'Illuminate\Filesystem\FilesystemServiceProvider', 'filesystem'); });
Then you could be able to access
filesystemby calling app('filesystem') and use it as using in Laravel.Please refer to another case: https://github.com/laravel/lumen-framework/issues/168
Try to simulate this github source code to add disk configuration:
In addition, i found a package named league/flysystem-azure-blob-storage,you could try it to replace
league/flysystem