Adapter for theleague php flysystem for Cloudinary, with methods to support Laravel Voyager Media.
Install
composer require thedarkkid/cloudinary-flysystem
Example
use TheDarkKid\Flysystem\Cloudinary\CloudinaryAdapter as Adapter;
$config = [
'api_key' => ':key',
'api_secret' => ':secret',
'cloud_name' => ':name',
];
$container = new Adapter($config);
$filesystem = new League\Flysystem\Filesystem( $container );
$filesystem->listContents()
[https://github.com/laryhoFolaranmi/cloudinary-flysystem-adapter]