vasilvestre / flysystem-cloudinary-adapter
Cloudinary adapter for Flysystem 3+
v1.2
2022-07-30 16:23 UTC
Requires
- php: ^8.0
- ext-fileinfo: *
- cloudinary/cloudinary_php: ^2.0
- league/flysystem: ^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- league/flysystem-adapter-test-utilities: ^3.0
- phpstan/phpstan: ^1.7
- phpunit/phpunit: ^9.0
- symfony/dotenv: ^6.0
This package is auto-updated.
Last update: 2024-10-29 06:25:36 UTC
README
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]);