Looking to hire Laravel developers? Try LaraJobs

laravel-cloudinary maintained by showcheap

Description
Flysystem adapter for Cloudinary
Last update
2017/08/21 11:18 (dev-master)
License
Links
Downloads
6

Comments
comments powered by Disqus

flysystem-cloudinary

Adapter for theleague php flysystem for Cloudinary

Author Latest Stable Version Total Downloads Latest Unstable Version License Build Status

Install

  composer require carlosocarvalho/flysystem-cloudinary

Example


use CarlosOCarvalho\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 );