vasilvestre/flysystem-cloudinary-adapter

Cloudinary adapter for Flysystem 3+

v1.2 2022-07-30 16:23 UTC

This package is auto-updated.

Last update: 2024-04-29 04:47:53 UTC


README

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