cloudinary/cloudinary_php

Cloudinary PHP SDK


README

Tests license Packagist Packagist

Cloudinary PHP SDK

About

The Cloudinary PHP SDK allows you to quickly and easily integrate your application with Cloudinary. Effortlessly optimize, transform, upload and manage your cloud's assets.

Note

This Readme provides basic installation and usage information. For the complete documentation, see the PHP SDK Guide.

Table of Contents

Key Features

Version Support

SDK Version PHP 5.4 PHP 5.5 PHP 5.6 PHP 7.x PHP 8.x
2.x x x v v v
1.x v v v v x

Installation

composer require "cloudinary/cloudinary_php"

Usage

Migration

See the Cloudinary PHP SDK Migration guide for more information on migrating to this version of the PHP SDK.

The previous (1.x) version of the SDK is located here.

Setup

use Cloudinary\Cloudinary;

$cloudinary = new Cloudinary();

Transform and Optimize Assets

$cloudinary->image('sample.jpg')->resize(Resize::fill()->width(100)->height(150))->format(Format::auto());

Upload

$cloudinary->uploadApi->upload('my_image.jpg');

Security options

Contributions

  • Ensure tests run locally
  • Open a PR and ensure Travis tests pass

Get Help

If you run into an issue or have a question, you can either:

About Cloudinary

Cloudinary is a powerful media API for websites and mobile apps alike, Cloudinary enables developers to efficiently manage, transform, optimize, and deliver images and videos through multiple CDNs. Ultimately, viewers enjoy responsive and personalized visual-media experiences—irrespective of the viewing device.

Additional Resources

Licence

Released under the MIT license.