Download the PHP package antennaio/laravel-clyde without Composer
On this page you can find all versions of the php package antennaio/laravel-clyde. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-clyde
Laravel Clyde
Image uploads and manipulation for Laravel, a wrapper around Glide
You can use the package to upload your images to local filesystem or S3 and display them on your site in various sizes. Thanks to Glide all manipulated images will be cached and reserved on subsequent visits.
Installation
Install through composer:
Add the service provider to config:
If you intend to use facades, install those as well:
Publish configuration:
Uploads
You can use dependency injection or facades, it's up to you.
Each filename generated by Clyde is unique. Make sure to store the filename, so that you can display the image at a later time.
You can control the location of where the uploaded file will be saved by passing an additional argument
to the upload
method. Below is an example of how to save an image and keep its original name:
You may also use a closure to modify the file path:
You can also check if an image already exists:
Or delete a previously uploaded image:
Displaying images
You can pass various image manipulations as the second parameter:
For the full list of available manipulations take a look at the Glide docs:
http://glide.thephpleague.com/1.0/api/quick-reference/
Additionally, you can setup presets and use them as a quicker way to apply manipulations to the images:
Watermarks
Watermarks are stored on the local filesystem by default. To use watermarks put the watermark files
in storage/app/watermarks
directory. To adjust the location where watermark files are stored you can
edit watermarks
and watermarks_path_prefix
entries in the config.
Security
All URLs generated by Clyde are signed by default. This means that there is always a signature
appended to all URLs and verified when an image is displayed. To turn this feature off set the secure_urls
key to false in the config (not recommended).
Clyde?
The package name is a tribute to Clyde "The Glide" Drexler.
All versions of laravel-clyde with dependencies
illuminate/contracts Version ^5.1
illuminate/routing Version ^5.1
illuminate/support Version ^5.1
league/glide Version ^1.0
league/glide-symfony Version ^1.0
symfony/http-foundation Version ^2.7|^3.0