-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: crynobone <[email protected]>
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Imagine Package for Laravel 4 | ||
============== | ||
|
||
Orchestra\Imagine is a Laravel 4 package wrapper for [Imagine](https://github.com/avalanche123/Imagine). | ||
|
||
[![Latest Stable Version](https://poser.pugx.org/orchestra/imagine/v/stable.png)](https://packagist.org/packages/orchestra/imagine) | ||
[![Total Downloads](https://poser.pugx.org/orchestra/imagine/downloads.png)](https://packagist.org/packages/orchestra/imagine) | ||
[![Build Status](https://travis-ci.org/orchestral/imagine.png?branch=master)](https://travis-ci.org/orchestral/imagine) | ||
[![Coverage Status](https://coveralls.io/repos/orchestral/imagine/badge.png?branch=master)](https://coveralls.io/r/orchestral/imagine?branch=master) | ||
|
||
## Quick Installation | ||
|
||
To install through composer, simply put the following in your `composer.json` file: | ||
|
||
```json | ||
{ | ||
"require": { | ||
"orchestra/imagine": "1.0.*@dev" | ||
} | ||
} | ||
``` | ||
|
||
Add `Orchestra\Imagine\ImagineServiceProvider` service provider in `app/config/app.php`. | ||
|
||
```php | ||
'providers' => array( | ||
|
||
// ... | ||
|
||
'Orchestra\Imagine\ImagineServiceProvider', | ||
), | ||
``` | ||
|
||
Add `Imagine` alias in `app/config/app.php`. | ||
|
||
```php | ||
'aliases' => array( | ||
|
||
// ... | ||
|
||
'Imagine' => 'Orchestra\Imagine\Facade', | ||
), | ||
``` | ||
|