ImgYard
Set your images free. Cache and serve up cropped and resized image assets for use on your website, (*1)
Features
- Clean simple urls for all your images
- Automatically generates resized and croped images on request
- Caches image for repeated requests
Requirements
Installation (Coming Soon)
Add the following to your root composer.json, (*2)
"stwt/image-yard": "*"
Update your packages with composer update or install with composer install., (*3)
Once Composer has installed or updated your packages you need to register the Mothership with Laravel. Open up app/config/app.php and add the following to the providers key., (*4)
'Stwt\ImgYardServiceProvider',
Next you need to alias Mothership's facade. Find the aliases key which should be below the providers key., (*5)
'ImgYard' => 'Stwt\ImgYard\ImgYard',
Finally, run composer dump-autoload to updated your autoload class map, (*6)