Skip to content
This repository has been archived by the owner on Dec 22, 2019. It is now read-only.

Commit

Permalink
Added information concerning the version difference for Laravel 4.0 a…
Browse files Browse the repository at this point in the history
…nd 4.1
  • Loading branch information
Bogardo committed Dec 17, 2013
1 parent 116feb6 commit 8721b43
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,41 @@ This package uses the [Mailgun-PHP](https://github.com/mailgun/mailgun-php) libr
- [Tagging](#tagging)

## Installation ##

### Laravel 4 ###
Open your `composer.json` file and add the following to the `require` key:

"bogardo/mailgun": "dev-master"
"bogardo/mailgun": "v1.0"

Example:

"require": {
"laravel/framework": "4.0.*",
"bogardo/mailgun": "dev-master"
"bogardo/mailgun": "v1.0"
}

Run composer update from the command line to install the package
### Laravel 4.1 ###
Open your `composer.json` file and add the following to the `require` key:

"bogardo/mailgun": "v2.0"

Example:

"require": {
"laravel/framework": "4.0.*",
"bogardo/mailgun": "v2.0"
}

### Dev master ###
If you want the latest and greatest, please add the following to the `require` key:

"bogardo/mailgun": "dev-master"

>Bear in mind that the `dev-master` does not support Laravel 4.0, only 4.1 (and up)
---
<br />
After adding the key, run composer update from the command line to install the package
```bash
composer update
```
Expand Down

0 comments on commit 8721b43

Please sign in to comment.