PHPackages                             youssefreda4/cloudinary-manager - 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. youssefreda4/cloudinary-manager

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

youssefreda4/cloudinary-manager
===============================

Professional Laravel Cloudinary integration package

v1.0.1(5mo ago)41MITPHPPHP ^8.1

Since Nov 15Pushed 5mo agoCompare

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

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

Cloudinary Manager for Laravel
==============================

[](#cloudinary-manager-for-laravel)

A professional Laravel package for managing media uploads with Cloudinary.

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

[](#installation)

```
composer require youssefreda4/cloudinary-manager
```

Configuration
-------------

[](#configuration)

Publish the configuration file:

```
php artisan vendor:publish --tag=cloudinary-config
```

Add to your `.env`:

```
CLOUDINARY_CLOUD_NAME=your_cloud_name
CLOUDINARY_API_KEY=your_api_key
CLOUDINARY_API_SECRET=your_api_secret
```

Usage
-----

[](#usage)

### Using Facade

[](#using-facade)

```
use CloudinaryManager\Facades\Cloudinary;

// Upload image
$result = Cloudinary::uploadImage($request->file('image'), 'products');

// Delete image
Cloudinary::deleteImage('products/image_id');

// Generate URL with transformations
$url = Cloudinary::generateUrl('products/image_id', [
    'width' => 300,
    'height' => 300,
    'crop' => 'fill'
]);
```

### Using Trait in Models

[](#using-trait-in-models)

```
use CloudinaryManager\Traits\HasCloudinaryMedia;

class Product extends Model
{
    use HasCloudinaryMedia;

    public function uploadProductImage($file)
    {
        $result = $this->uploadToCloudinary($file, 'image', 'products');
        $this->image_public_id = $result->publicId;
        $this->image_url = $result->secureUrl;
        $this->save();
    }
}
```

### API Endpoints

[](#api-endpoints)

The package automatically registers these routes:

- `POST /api/cloudinary/upload/image`
- `POST /api/cloudinary/upload/video`
- `DELETE /api/cloudinary/delete/image`
- `DELETE /api/cloudinary/delete/video`
- `GET /api/cloudinary/resource/info`

License
-------

[](#license)

MIT

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance70

Regular maintenance activity

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity45

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

Every ~4 days

Total

2

Last Release

170d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/92baf755a4c32be46cb579cd1646f0e6ab8599218970418f5fbdf9e7f29da3bf?d=identicon)[youssefreda4](/maintainers/youssefreda4)

---

Top Contributors

[![youssefreda4](https://avatars.githubusercontent.com/u/154443732?v=4)](https://github.com/youssefreda4 "youssefreda4 (13 commits)")

---

Tags

laravelcloudinaryImage uploadvideo-upload

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/youssefreda4-cloudinary-manager/health.svg)

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

###  Alternatives

[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M74](/packages/aws-aws-sdk-php-laravel)[spatie/laravel-google-cloud-storage

Google Cloud Storage filesystem driver for Laravel

2408.9M12](/packages/spatie-laravel-google-cloud-storage)[yoelpc4/laravel-cloudinary

Laravel Cloudinary filesystem cloud driver.

3343.0k](/packages/yoelpc4-laravel-cloudinary)[codebar-ag/laravel-flysystem-cloudinary

Cloudinary Flysystem v1 integration with Laravel

1224.9k2](/packages/codebar-ag-laravel-flysystem-cloudinary)[teepluss/cloudinary

Cloudinary API wrapper for Laravel 4

1810.5k](/packages/teepluss-cloudinary)[kingofcode/laravel-uploadable

Laravel Uploadable trait to automatically upload images and files with minimum configuration

286.4k](/packages/kingofcode-laravel-uploadable)

PHPackages © 2026

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