PHPackages                             jasirilabs/flysystem-cloudinary - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. jasirilabs/flysystem-cloudinary

ActiveLibrary[File &amp; Storage](/categories/file-storage)

jasirilabs/flysystem-cloudinary
===============================

Flysystem Adapter for the Cloudinary v2 API

v0.0.1(4y ago)015MITPHPPHP ^7.4|^8.0

Since Mar 22Pushed 4y ago1 watchersCompare

[ Source](https://github.com/jasirilabs/flysystem-cloudinary)[ Packagist](https://packagist.org/packages/jasirilabs/flysystem-cloudinary)[ Docs](https://github.com/jasirilabs/flysystem-cloudinary)[ RSS](/packages/jasirilabs-flysystem-cloudinary/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (5)Versions (2)Used By (0)

 Flysystem Adapter for Cloudinary API
=====================================

[](#-flysystem-adapter-for-cloudinary-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2c093b82ee3bc66f453518549845f92868dc642757e685734adb81864883dfb3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a61736972696c6162732f666c7973797374656d2d636c6f7564696e6172792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jasirilabs/flysystem-cloudinary)[![Total Downloads](https://camo.githubusercontent.com/8681527fcc42e1343c08f6b36c4ad2d1ed79c7c6ddf4c000194d2b896f704a05/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a61736972696c6162732f666c7973797374656d2d636c6f7564696e6172792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jasirilabs/flysystem-cloudinary)[![GitHub Actions](https://github.com/jasirilabs/flysystem-cloudinary/actions/workflows/main.yml/badge.svg)](https://github.com/jasirilabs/flysystem-cloudinary/actions/workflows/main.yml/badge.svg)

The package contains a [flysystem](https://flysystem.thephpleague.com/) adapter for cloudinary. Under the hood [Cloudinary PHP SDK](https://github.com/cloudinary/cloudinary_php)is used.

Disclaimer
----------

[](#disclaimer)

> *This package is still under active development but fill free to try out leave a PR or file an issue incase of any challenge*

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require jasirilabs/flysystem-cloudinary
```

Usage
-----

[](#usage)

Then follow the steps on using [custom filesystem](https://laravel.com/docs/9.x/filesystem#custom-filesystems) with laravel.

**Quick Start**

```
FILESYSTEM_DISK=
CLOUDINARY_NAME=
CLOUDINARY_KEY=
CLOUDINARY_SECRET=
```

Add cloudinary disk in `filesystem.php`

```
		...
	'disk' =>
	[
		...

		   'cloudinary' => [
            'driver' => 'cloudinary',
            'name' => env('CLOUDINARY_NAME'),
            'key' => env('CLOUDINARY_KEY'),
            'secret' => env('CLOUDINARY_SECRET'),
	]
```

Add the following on boot method of `AppServiceProvider.php` file

```
Storage::extend('cloudinary', function ($app, $config) {

            $configuration = new Configuration();
            $configuration->cloud->cloudName = $config['name'];
            $configuration->cloud->apiKey = $config['key'];
            $configuration->cloud->apiSecret = $config['secret'];
            $configuration->url->secure = true;

            $cloudinary = new Cloudinary($configuration);
            $adapter = new CloudinaryAdapter($cloudinary);

            return new FilesystemAdapter(
                new Filesystem($adapter, $config),
                $adapter,
                $config
            );
        });
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Bruno Alfred](https://github.com/jasirilabs)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

PHP Package Boilerplate
-----------------------

[](#php-package-boilerplate)

This package was generated using the [PHP Package Boilerplate](https://laravelpackageboilerplate.com) by [Beyond Code](http://beyondco.de/).

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1517d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/792663d53bb3a2d4bde86ffae05ca9e7e46933b411dc6cf0ac1ff0ea76aca1a7?d=identicon)[brunoalfred](/maintainers/brunoalfred)

---

Top Contributors

[![brunoalfred](https://avatars.githubusercontent.com/u/55545250?v=4)](https://github.com/brunoalfred "brunoalfred (9 commits)")

---

Tags

flysystem-cloudinaryjasirilabs

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/jasirilabs-flysystem-cloudinary/health.svg)

```
[![Health](https://phpackages.com/badges/jasirilabs-flysystem-cloudinary/health.svg)](https://phpackages.com/packages/jasirilabs-flysystem-cloudinary)
```

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[league/flysystem-sftp-v3

SFTP filesystem adapter for Flysystem.

6129.6M91](/packages/league-flysystem-sftp-v3)[yii2-starter-kit/yii2-file-kit

Yii2 file upload and storage kit

151216.8k6](/packages/yii2-starter-kit-yii2-file-kit)[azure-oss/storage-blob-flysystem

Flysystem adapter for Azure Storage PHP

29936.0k10](/packages/azure-oss-storage-blob-flysystem)[carlosocarvalho/flysystem-cloudinary

Flysystem adapter for Cloudinary

22154.8k5](/packages/carlosocarvalho-flysystem-cloudinary)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
