jrm2k6/cloudder
最新稳定版本:0.7.0
Composer 安装命令:
composer require jrm2k6/cloudder
包简介
Cloudinary API wrapper for Laravel
README 文档
README
This project is not actively maintained. I might be slow to answer, as you can tell by looking at the issues. I have moved to some new projects, not in the PHP ecosystem. You can always reach out to me through my email.
If you fork it on publish it as your own, it might be nice to credit the original author at https://github.com/teepluss/laravel4-cloudinary.
Initially forked from https://github.com/teepluss/laravel4-cloudinary.
If there is any feature you would like feel free to open an issue or send me an email!
Installation
composer require jrm2k6/cloudder
For people still using Laravel 4.2: composer require jrm2k6/cloudder:0.1.* and check the branch l4 for the installation instructions.
Configuration
Modify your .env file to add the following information from Cloudinary
Required
CLOUDINARY_API_KEY=012345679890123
CLOUDINARY_API_SECRET=foobarfoobarfoob-arfoobarfo
CLOUDINARY_CLOUD_NAME=foobarcorp
Optional
CLOUDINARY_BASE_URL
CLOUDINARY_SECURE_URL
CLOUDINARY_API_BASE_URL
Laravel 5.5+ uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider. If you don't use auto-discovery follow the next steps:
Add the following in config/app.php:
'providers' => array( JD\Cloudder\CloudderServiceProvider::class, ); 'aliases' => array( 'Cloudder' => JD\Cloudder\Facades\Cloudder::class, );
Run php artisan vendor:publish --provider="JD\Cloudder\CloudderServiceProvider"
Usage
upload()
Cloudder::upload($filename, $publicId, array $options, array $tags);
with:
$filename: path to the image you want to upload$publicId: the id you want your picture to have on Cloudinary, leave it null to have Cloudinary generate a random id.$options: options for your uploaded image, check the Cloudinary documentation to know more$tags: tags for your image
returns the CloudinaryWrapper.
uploadVideo()
Cloudder::uploadVideo($filename, $publicId, array $options, array $tags);
with:
$filename: path to the video you want to upload$publicId: the id you want your video to have on Cloudinary, leave it null to have Cloudinary generate a random id.$options: options for your uploaded video, check the Cloudinary documentation to know more$tags: tags for your image
returns the CloudinaryWrapper.
getPublicId()
Cloudder::getPublicId()
returns the public id of the last uploaded resource.
getResult()
Cloudder::getResult()
returns the result of the last uploaded resource.
show() + secureShow()
Cloudder::show($publicId, array $options) Cloudder::secureShow($publicId, array $options)
with:
$publicId: public id of the resource to display$options: options for your uploaded resource, check the Cloudinary documentation to know more
returns the url of the picture on Cloudinary (https url if secureShow is used).
showPrivateUrl()
Cloudder::showPrivateUrl($publicId, $format, array $options)
with:
$publicId: public id of the resource to display$format: format of the resource your want to display ('png', 'jpg'...)$options: options for your uploaded resource, check the Cloudinary documentation to know more
returns the private url of the picture on Cloudinary, expiring by default after an hour.
rename()
Cloudder::rename($publicId, $toPublicId, array $options)
with:
$publicId: publicId of the resource to rename$toPublicId: new public id of the resource$options: options for your uploaded resource, check the cloudinary documentation to know more
renames the original picture with the $toPublicId id parameter.
destroyImage() + delete()
Cloudder::destroyImage($publicId, array $options) Cloudder::delete($publicId, array $options)
with:
$publicId: publicId of the resource to remove$options: options for the image to delete, check the cloudinary documentation to know more
removes image from Cloudinary.
destroyImages()
Cloudder::destroyImages(array $publicIds, array $options)
with:
$publicIds: array of ids, identifying the pictures to remove$options: options for the images to delete, check the cloudinary documentation to know more
removes images from Cloudinary.
addTag()
Cloudder::addTag($tag, $publicIds, array $options)
with:
$tag: tag to apply$publicIds: images to apply tag to$options: options for your uploaded resource, check the cloudinary documentation to know more
removeTag()
Cloudder::removeTag($tag, $publicIds, array $options)
with:
$tag: tag to remove$publicIds: images to remove tag from$options: options for your uploaded image, check the Cloudinary documentation to know more
createArchive()
Cloudder::createArchive(array $options, $archiveName, $mode)
with:
$options: options for your archive, like name, tag/prefix/public ids to select images$archiveName: name you want to give to your archive$mode: 'create' or 'download' ('create' will create an archive and returns a JSON response with the properties of the archive, 'download' will return the zip file for download)
creates a zip file on Cloudinary.
downloadArchiveUrl()
Cloudder::downloadArchiveUrl(array $options, $archiveName)
with:
$options: options for your archive, like name, tag/prefix/public ids to select images$archiveName: name you want to give to your archive
returns a download url for the newly created archive on Cloudinary.
Running tests
phpunit
Example
You can find a working example in the repo cloudder-l5-example
jrm2k6/cloudder 适用场景与选型建议
jrm2k6/cloudder 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 878.4k 次下载、GitHub Stars 达 269, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「image」 「api」 「upload」 「laravel」 「cloudinary」 「laravel4」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jrm2k6/cloudder 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jrm2k6/cloudder 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jrm2k6/cloudder 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
A PSR-7 compatible library for making CRUD API endpoints
The Yii2 extension uses jQuery PrettyPhoto and OwlCarousel js and makes image galary from php array of structure defined.
Laravel Media Popup to upload/view the files
统计信息
- 总下载量: 878.4k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 272
- 点击次数: 28
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04