Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed May 14, 2018
1 parent 90211a2 commit db62e0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
17 changes: 4 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,16 @@
[![Total Downloads](https://poser.pugx.org/omnipay/mollie/d/total.png)](https://packagist.org/packages/omnipay/mollie)

[Omnipay](https://github.com/thephpleague/omnipay) is a framework agnostic, multi-gateway payment
processing library for PHP 5.3+. This package implements Mollie support for Omnipay.
processing library for PHP. This package implements Mollie support for Omnipay.

## Installation

Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply add it
to your `composer.json` file:
Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply require `omnipay/omnipay` and `omnipay/mollie` with Composer:

```json
{
"require": {
"omnipay/mollie": "~3.0"
}
}
```
composer require omnipay/omnipay omnipay/mollie
```

And run composer to update your dependencies:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

## Basic Usage

Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"psr-4": { "Omnipay\\Mollie\\" : "src/" }
},
"require": {
"omnipay/common": "^3@beta"
"omnipay/common": "^3"
},
"require-dev": {
"omnipay/tests": "^3",
Expand All @@ -47,6 +47,5 @@
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit db62e0f

Please sign in to comment.