From 8721b4358ae04ec357611c76db6af9104de45895 Mon Sep 17 00:00:00 2001 From: Bogardo Date: Tue, 17 Dec 2013 01:28:07 +0100 Subject: [PATCH] Added information concerning the version difference for Laravel 4.0 and 4.1 --- README.md | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 62541fc..c6259da 100644 --- a/README.md +++ b/README.md @@ -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) + +--- +
+After adding the key, run composer update from the command line to install the package ```bash composer update ```