stwt / img-yard
There is no license information available for the latest version (dev-master) of this package.
dev-master
2013-10-14 17:16 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2024-10-26 14:25:30 UTC
README
Set your images free. Cache and serve up cropped and resized image assets for use on your website
Features
- Clean simple urls for all your images
- Automatically generates resized and croped images on request
- Caches image for repeated requests
Requirements
- Laravel 4
- PHP 5.4.*
Installation (Coming Soon)
Add the following to your root composer.json
"stwt/image-yard": "*"
Update your packages with composer update or install with composer install.
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.
'Stwt\ImgYardServiceProvider',
Next you need to alias Mothership's facade. Find the aliases key which should be below the providers key.
'ImgYard' => 'Stwt\ImgYard\ImgYard',
Finally, run composer dump-autoload to updated your autoload class map