showcheap/laravel-cloudinary

此包已被弃用且不再维护。未建议替代包。

Cloudinary 的 Flysystem 适配器

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

league/php-flysystem 的 Cloudinary 适配器

Author Latest Stable Version Total Downloads Latest Unstable Version License Build Status

安装

  composer require carlosocarvalho/flysystem-cloudinary

示例

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