{"id":20179059,"url":"https://github.com/speicher210/cloudinarybundle","last_synced_at":"2025-07-22T04:35:19.694Z","repository":{"id":34549695,"uuid":"38494491","full_name":"Speicher210/CloudinaryBundle","owner":"Speicher210","description":"Symfony bundle for Cloudinary PHP API library","archived":false,"fork":false,"pushed_at":"2025-02-07T09:53:31.000Z","size":84,"stargazers_count":23,"open_issues_count":1,"forks_count":10,"subscribers_count":5,"default_branch":"1.x","last_synced_at":"2025-03-30T01:11:17.742Z","etag":null,"topics":["cloudinary","php","symfony-bundle"],"latest_commit_sha":null,"homepage":"","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/Speicher210.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-07-03T13:39:38.000Z","updated_at":"2025-02-07T09:53:34.000Z","dependencies_parsed_at":"2025-03-30T01:11:17.036Z","dependency_job_id":"6058ceff-eb84-4896-9623-728e434e59be","html_url":"https://github.com/Speicher210/CloudinaryBundle","commit_stats":{"total_commits":45,"total_committers":8,"mean_commits":5.625,"dds":"0.37777777777777777","last_synced_commit":"35cbdb6d1d4ea6fdb137811d5088cdc6edf11375"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Speicher210%2FCloudinaryBundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Speicher210%2FCloudinaryBundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Speicher210%2FCloudinaryBundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Speicher210%2FCloudinaryBundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Speicher210","download_url":"https://codeload.github.com/Speicher210/CloudinaryBundle/tar.gz/refs/heads/1.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247423515,"owners_count":20936626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cloudinary","php","symfony-bundle"],"created_at":"2024-11-14T02:24:47.078Z","updated_at":"2025-04-06T02:11:13.574Z","avatar_url":"https://github.com/Speicher210.png","language":"PHP","readme":"# Speicher210 CloudinaryBundle\n\n[![Latest Version](https://img.shields.io/github/tag/Speicher210/CloudinaryBundle.svg?style=flat-square)](https://github.com/Speicher210/CloudinaryBundle/releases)\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)\n![GitHub branch checks state](https://img.shields.io/github/checks-status/Speicher210/CloudinaryBundle/master?style=flat-square)\n\n## Install\n\nAdd [`speicher210/cloudinary-bundle`](https://packagist.org/packages/speicher210/CloudinaryBundle) to your `composer.json` file:\n\n``` bash\ncomposer require \"speicher210/cloudinary-bundle\"\n```\n\nRegister the bundle:\n\n``` php\n\u003c?php\n// config/bundles.php\n\nreturn [\n    // ...\n    Speicher210\\CloudinaryBundle\\Speicher210CloudinaryBundle::class =\u003e ['all' =\u003e true],\n    // ...\n];\n```\n\nor\n\n``` php\n// app/AppKernel.php\n// ...\npublic function registerBundles()\n{\n    return array(\n        // ...\n        new Speicher210\\CloudinaryBundle\\Speicher210CloudinaryBundle(),\n        // ...\n    );\n}\n// ...\n```\n\n## Usage\n\nConfigure the connection to cloudinary in your `config.yml` :\n\n``` yaml\nspeicher210_cloudinary:\n    url: cloudinary://my-key:my-secret@my-cloud\n    # The next configuration variables should be defined if they are not present in the URL\n    # The URL will take precedence\n    cloud_name: my-cloud\n    access_identifier:\n        api_key: my-key\n        api_secret: my-secret\n    options:\n        secure: true\n```\n\nThe following services will be available:\n\n``` php\n$this-\u003eget('speicher210_cloudinary.cloudinary'); // Extension of Cloudinary from cloudinary package.\n\n$this-\u003eget('speicher210_cloudinary.api'); // Extension of Cloudinary\\Api from cloudinary package.\n\n$this-\u003eget('speicher210_cloudinary.uploader'); // Extension of Cloudinary\\Uploader from cloudinary package.\n```\n\nYou can pass the same options to the twig filter or function:\n\n``` twig\n{{ cloudinary-public-id | cloudinary_url({'width': 50, 'height': 50, 'crop': 'fill'}) }}\n{{ cloudinary_url('cloudinary-public-id', {'width': 50, 'height': 50, 'crop': 'fill'}) }}\n{{ cloudinary_image_tag('cloudinary-public-id', {'height' : 150}) }}\n{{ cloudinary_video_tag('cloudinary-public-id', {'height' : 150}) }}\n```\n\nFor further documentation see [Cloudinary PHP library](https://github.com/cloudinary/cloudinary_php)\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email instead of using the issue tracker.\n\n## Credits\n\n- [Dragos Protung](https://github.com/dragosprotung)\n- [All contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n\n\n[link-contributors]: ../../contributors\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspeicher210%2Fcloudinarybundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspeicher210%2Fcloudinarybundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspeicher210%2Fcloudinarybundle/lists"}