Skip to content

Commit

Permalink
Add README.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <[email protected]>
  • Loading branch information
crynobone committed Sep 18, 2013
1 parent a13c04d commit deada65
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions README.md
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',
),
```

0 comments on commit deada65

Please sign in to comment.