vasilvestre/flysystem-cloudinary-adapter

Flysystem 3+ 的 Cloudinary 适配器

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

This package is auto-updated.

Last update: 2024-08-29 05:56:19 UTC


README

Software License CI

这是一个 Flysystem 适配器,用于 Cloudinary API

由于它似乎与 https://github.com/carlosocarvalho/flysystem-cloudinary 很接近,这个库不符合我的使用需求。public_id 不应包含文件扩展名,但它在图像和视频中包含。它还受到了 Enl/Flysystem-cloudinary 的极大启发。

安装

composer require vasilvestre/flysystem-cloudinary-adapter

引导

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