showcheap/laravel-cloudinary

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

Flysystem adapter for Cloudinary

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 9

pkg:composer/showcheap/laravel-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 );