Skip to content

vasilvestre/flysystem-cloudinary-adapter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flysystem-cloudinary-adapter

Software License CI

This is a Flysystem adapter for Cloudinary API.

As it seem close to https://github.com/carlosocarvalho/flysystem-cloudinary, this library do not fit my usage. The public_id shouldn't contains file extension for image and video and it does. It's also highly inspired by Enl/Flysystem-cloudinary.

Installation

composer require vasilvestre/flysystem-cloudinary-adapter

Bootstrap

<?php
use Vasilvestre\Flysystem\Cloudinary\CloudinaryAdapter;
use League\Flysystem\Filesystem;

include __DIR__ . '/vendor/autoload.php';

$adapter = new CloudinaryAdapter([
    'cloud_name' => 'your-cloudname-here',
    'api_key' => 'api-key',
    'api_secret' => 'You-know-what-to-do',
    'uri_prefix' => 'prod/'
]);

// I'm not sure about underlying instructions.

// This option disables assert that file is absent before calling `write`.
// It is necessary if you want to overwrite files on `write` as Cloudinary does it by default.
$filesystem = new Filesystem($adapter, ['disable_asserts' => true]);