thedarkkid / cloudinary-flysystem
Flysystem adapter for Cloudinary
Installs: 262
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
pkg:composer/thedarkkid/cloudinary-flysystem
Requires
- php: >=5.4.0
- cloudinary/cloudinary_php: ^1.3
- league/flysystem: ^1.0
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2025-09-20 00:43:47 UTC
README
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 );
List contents and others actions use Filesystem api
$filesystem->listContents()
For use in laravel
[https://github.com/laryhoFolaranmi/cloudinary-flysystem-adapter]