Skip to content

Commit 6735dee

Browse files
committed
Issues fixed
1 parent c3353f6 commit 6735dee

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
language: php
22

33
php:
4-
- 5.3
5-
- 5.4
6-
- 5.5
74
- 5.6
85
- 7.0
96
- 7.1
10-
- hhvm
7+
- 7.2
8+
- 7.3
9+
- 7.4
1110

1211
before_script:
1312
- composer install -n --dev --prefer-source
1413

1514
script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
1615

17-
after_script: vendor/bin/coveralls -v
16+
after_script: vendor/bin/coveralls -v

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![License](https://poser.pugx.org/dercoder/omnipay-webmoney/license.png)](https://packagist.org/packages/dercoder/omnipay-webmoney)
1212

1313
[Omnipay](https://github.com/omnipay/omnipay) is a framework agnostic, multi-gateway payment
14-
processing library for PHP 5.3+. This package implements [WebMoney](https://www.webmoney.az) support for Omnipay.
14+
processing library for PHP 5.6+. This package implements [WebMoney](https://www.webmoney.az) support for Omnipay.
1515

1616
## Installation
1717

@@ -21,7 +21,7 @@ to your `composer.json` file:
2121
```json
2222
{
2323
"require": {
24-
"dercoder/omnipay-webmoney": "~1.0"
24+
"dercoder/omnipay-webmoney": "~3.0"
2525
}
2626
}
2727
```
@@ -51,4 +51,4 @@ or ask more detailed questions, there is also a [mailing list](https://groups.go
5151
you can subscribe to.
5252

5353
If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/dercoder/omnipay-webmoney/issues),
54-
or better yet, fork the library and submit a pull request.
54+
or better yet, fork the library and submit a pull request.

composer.json

Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
{
2-
"name": "dercoder/omnipay-webmoney",
3-
"type": "library",
4-
"description": "WebMoney driver for the Omnipay payment processing library",
5-
"keywords": [
6-
"webmoney",
7-
"gateway",
8-
"merchant",
9-
"omnipay",
10-
"pay",
11-
"payment"
12-
],
13-
"homepage": "https://github.com/dercoder/omnipay-webmoney",
14-
"license": "MIT",
15-
"autoload": {
16-
"psr-4": {
17-
"Omnipay\\WebMoney\\": "src/"
18-
}
19-
},
20-
"require": {
21-
"omnipay/common": "^3.0",
22-
"ext-simplexml": "*",
23-
"ext-dom": "*",
24-
},
25-
"require-dev": {
26-
"omnipay/tests": "^3.0",
27-
"satooshi/php-coveralls": "1.0.0",
28-
"guzzlehttp/guzzle": "^6.5.5"
29-
},
30-
"suggest": {
31-
"guzzlehttp/guzzle": "To handle WebMoney payouts",
32-
"ext-curl": "To handle WebMoney payouts"
33-
},
34-
"extra": {
35-
"branch-alias": {
36-
"dev-master": "3.0.x-dev",
37-
}
2+
"name": "dercoder/omnipay-webmoney",
3+
"type": "library",
4+
"description": "WebMoney driver for the Omnipay payment processing library",
5+
"keywords": [
6+
"webmoney",
7+
"gateway",
8+
"merchant",
9+
"omnipay",
10+
"pay",
11+
"payment"
12+
],
13+
"homepage": "https://github.com/dercoder/omnipay-webmoney",
14+
"license": "MIT",
15+
"autoload": {
16+
"psr-4": {
17+
"Omnipay\\WebMoney\\": "src/"
3818
}
19+
},
20+
"require": {
21+
"php": "5.6 | 7.*",
22+
"ext-simplexml": "*",
23+
"ext-dom": "*",
24+
"omnipay/common": "^3.0"
25+
},
26+
"require-dev": {
27+
"omnipay/tests": "^3.0",
28+
"satooshi/php-coveralls": "1.0.0",
29+
"guzzlehttp/guzzle": "^6.5.5"
30+
},
31+
"suggest": {
32+
"guzzlehttp/guzzle": "To handle WebMoney payouts",
33+
"ext-curl": "To handle WebMoney payouts"
34+
},
35+
"extra": {
36+
"branch-alias": {
37+
"dev-master": "3.0.x-dev"
38+
}
39+
}
3940
}

0 commit comments

Comments
 (0)