stwt / img-yard
Installs: 65
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/stwt/img-yard
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2025-09-27 19:03:39 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