showcheap/laravel-cloudinary

This package is abandoned and no longer maintained. No replacement package was suggested.

Flysystem adapter for Cloudinary

1.0.2 2017-08-21 09:18 UTC

This package is not auto-updated.

Last update: 2021-10-16 12:27:50 UTC


README

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 );