Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.33 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.33 KB

Imagine Package for Laravel 4

Orchestra\Imagine is a Laravel 4 package wrapper for Imagine.

Latest Stable Version Total Downloads Build Status Coverage Status Scrutinizer Quality Score

Quick Installation

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',
),