{"id":34721622,"url":"https://github.com/cloudinary/media-editing-api-php","last_synced_at":"2026-05-25T06:32:31.552Z","repository":{"id":62551903,"uuid":"515391571","full_name":"cloudinary/media-editing-api-php","owner":"cloudinary","description":"Cloudinary Media Editing API PHP SDK","archived":false,"fork":false,"pushed_at":"2022-08-01T20:10:14.000Z","size":39,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":13,"default_branch":"main","last_synced_at":"2025-02-11T01:34:55.582Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudinary.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-19T01:15:03.000Z","updated_at":"2024-04-12T13:18:19.000Z","dependencies_parsed_at":"2022-11-03T03:00:26.791Z","dependency_job_id":null,"html_url":"https://github.com/cloudinary/media-editing-api-php","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cloudinary/media-editing-api-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fmedia-editing-api-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fmedia-editing-api-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fmedia-editing-api-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fmedia-editing-api-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudinary","download_url":"https://codeload.github.com/cloudinary/media-editing-api-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fmedia-editing-api-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33462839,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-25T06:15:14.662Z","status":"ssl_error","status_checked_at":"2026-05-25T06:14:31.284Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-25T01:48:24.994Z","updated_at":"2026-05-25T06:32:31.546Z","avatar_url":"https://github.com/cloudinary.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloudinary Media Editing API PHP SDK\n\nCloudinary Media Editing API\n\nFor more information, please visit [https://cloudinary.com](https://cloudinary.com).\n\n## Installation \u0026 Usage\n\n### Requirements\n\nPHP 7.3 and later.\n\n### Composer\n\nTo install the bindings via [Composer](https://getcomposer.org/), add the following to `composer.json`:\n\n```json\n{\n  \"require\": {\n    \"cloudinary/media-editing-api\": \"*\"\n  }\n}\n```\n\nThen run `composer install`\n\n### Manual Installation\n\nDownload the files and include `autoload.php`:\n\n```php\n\u003c?php\nrequire_once('/path/to/media-editing-api/vendor/autoload.php');\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n\n\n// Configure Cloudinary URL: basicAuth\n$config = Cloudinary\\MediaEditing\\Configuration::getDefaultConfiguration()\n              -\u003esetCloudinaryUrl('cloudinary://key:secret@cloud_name');\n\n\n$apiInstance = new Cloudinary\\MediaEditing\\Api\\TransformApi(null, $config);\n\n$transform_request = {\"input_type\":\"url\",\"url\":\"https://cloudinary-devs.github.io/cld-docs-assets/assets/images/shoes.jpg\",\"transformation_descriptor\":{\"descriptor_type\":\"canonical\",\"canonical_transformation\":\"w_500,c_scale,f_auto\"}}; // \\Cloudinary\\MediaEditing\\Model\\TransformRequest\n\ntry {\n    $result = $apiInstance-\u003etransform($transform_request);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling TransformApi-\u003etransform: ', $e-\u003egetMessage(), PHP_EOL;\n}\n\n```\n\n## API Endpoints\n\nAll URIs are relative to *https://api.cloudinary.com/v2/demo*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*TransformApi* | [**transform**](docs/Api/TransformApi.md#transform) | **POST** /media_editing/transform | Transform a media asset\n*TransformAndStoreApi* | [**transformAndStore**](docs/Api/TransformAndStoreApi.md#transformandstore) | **POST** /media_editing/transform_and_store | Transform and store media asset\n\n## Models\n\n- [EnqueuedResponse](docs/Model/EnqueuedResponse.md)\n- [ErrorResponse](docs/Model/ErrorResponse.md)\n- [ErrorResponseError](docs/Model/ErrorResponseError.md)\n- [MediaConnectorInstance](docs/Model/MediaConnectorInstance.md)\n- [TransformRequest](docs/Model/TransformRequest.md)\n- [TransformResult](docs/Model/TransformResult.md)\n- [TransformationDescriptor](docs/Model/TransformationDescriptor.md)\n\n## Authorization\n\n### basicAuth\n\n- **Type**: HTTP basic authentication\n\n## Tests\n\nTo run the tests, use:\n\n```bash\ncomposer install\nvendor/bin/phpunit\n```\n\n## Author\n\n\n\n## About this package\n\nThis Cloudinary PHP package is automatically generated.\n\n- API version: `0.1.0-beta`\n- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fmedia-editing-api-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudinary%2Fmedia-editing-api-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fmedia-editing-api-php/lists"}