Skip to content

orchestral/imagine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

99865f4 · Jun 19, 2014

History

59 Commits
Nov 9, 2013
Jun 19, 2014
Jun 19, 2014
Feb 20, 2014
Sep 18, 2013
Feb 12, 2014
Nov 9, 2013
Nov 9, 2013
Feb 12, 2014
Feb 5, 2014
Sep 18, 2013
Jun 12, 2014
Oct 18, 2013
May 4, 2014
Sep 18, 2013

Repository files navigation

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