cloudinary-laravel icon indicating copy to clipboard operation
cloudinary-laravel copied to clipboard

Laravel SDK for Cloudinary

Results 32 cloudinary-laravel issues
Sort by recently updated
recently updated
newest added

Bumps [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) from 7.2.0 to 7.5.0. Release notes Sourced from guzzlehttp/guzzle's releases. Release 7.5.0 See change log for changes. Release 7.4.5 See change log for changes. Release 7.4.4 See change...

dependencies

Bumps [symfony/http-kernel](https://github.com/symfony/http-kernel) from 5.2.3 to 5.4.20. Release notes Sourced from symfony/http-kernel's releases. v5.4.20 Changelog (https://github.com/symfony/http-kernel/compare/v5.4.19...v5.4.20) no significant changes v5.4.19 Changelog (https://github.com/symfony/http-kernel/compare/v5.4.18...v5.4.19) no significant changes v5.4.18 Changelog (https://github.com/symfony/http-kernel/compare/v5.4.17...v5.4.18) no significant changes...

dependencies

This PR is intended to bring the package up to date with Laravel 11 support. closes #116

Been using this package for a long time, until I realized all my projects are suddenly breaking. The package can no longer be used from Laravel >= 9.x which uses...

A new issue I have been facing.. public function addProduct(Request $request) { // Validate the request inputs $validatedData = $request->validate([ 'name' => 'required|string|max:255', 'type' => 'required|string|max:255', 'price' => 'required|numeric', 'description'...

I am using `"cloudinary-labs/cloudinary-laravel": "^2.1"` but I get the above error message. My flysystem version `"league/flysystem-aws-s3-v3": "^3.0"` I have also attached a screenshot here. Kindly help Thanks

I am uploading files to cloudinary with this code public function upload(Request $request) { $folder = 'product_photo'; if ($request->hasFile('photo')) { $file = $request->file('photo'); request()->validate([ 'photo' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:6048', ]); $cloudinaryResponse =...

@joshmanders the current implementation of the asset lookup function in the storage driver defaults to the `image` resource type and does not provide an option to specify other resource types,...

bug

The `readStream` method of a storage driver is likely expected to return a `resource` type, but in this package, it is set to `bool`. https://github.com/cloudinary-community/cloudinary-laravel/blob/434bb1fff2ef54e68bf5e4e05dbf8cf6bb3cf37b/src/CloudinaryAdapter.php#L291 Upon inspecting its return type,...

bug

This branch/PR holds all the work for the next major version of Cloudinary Laravel SDK, v3. - [x] Drops support for Laravel >= 10, PHP >= 8.1 - [x] Complete...