Orchestra\Imagine
is a Laravel 4 package wrapper for Imagine.
To install through composer, simply put the following in your composer.json
file:
{
"require": {
"orchestra/imagine": "2.2.*"
}
}
Add Orchestra\Imagine\ImagineServiceProvider
service provider in app/config/app.php
.
'providers' => array(
// ...
'Orchestra\Imagine\ImagineServiceProvider',
),
Add Imagine
alias in app/config/app.php
.
'aliases' => array(
// ...
'Imagine' => 'Orchestra\Imagine\Facade',
),