Skip to content

Commit c47081e

Browse files
committed
Added composer patches
1 parent 0203b02 commit c47081e

File tree

1 file changed

+48
-42
lines changed

1 file changed

+48
-42
lines changed

composer.json

Lines changed: 48 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,51 @@
11
{
2-
"name": "sudiptpa/omnipay-nabtransact",
3-
"type": "library",
4-
"description": "National Australia Bank (NAB) Transact driver for the Omnipay payment processing library.",
5-
"keywords": [
6-
"gateway",
7-
"merchant",
8-
"omnipay",
9-
"pay",
10-
"payment",
11-
"nabtransact"
12-
],
13-
"homepage": "https://github.com/sudiptpa/nabtransact",
14-
"license": "MIT",
15-
"authors": [
16-
{
17-
"name": "Sujip Thapa",
18-
"email": "sudiptpa@gmail.com"
19-
}
20-
],
21-
"autoload": {
22-
"psr-4": {
23-
"Omnipay\\NABTransact\\" : "src/"
24-
}
25-
},
26-
"require": {
27-
"omnipay/common": "^3"
28-
},
29-
"require-dev": {
30-
"omnipay/tests": "^3",
31-
"squizlabs/php_codesniffer": "^3",
32-
"phpro/grumphp": "^0.14.0"
33-
},
34-
"extra": {
35-
"branch-alias": {
36-
"dev-master": "3.0.x-dev"
37-
}
38-
},
39-
"scripts": {
40-
"test": "vendor/bin/phpunit",
41-
"check-style": "phpcs -p --standard=PSR2 src/",
42-
"fix-style": "phpcbf -p --standard=PSR2 src/"
2+
"name":"sudiptpa/omnipay-nabtransact",
3+
"type":"library",
4+
"description":"National Australia Bank (NAB) Transact driver for the Omnipay payment processing library.",
5+
"keywords":[
6+
"gateway",
7+
"merchant",
8+
"omnipay",
9+
"pay",
10+
"payment",
11+
"nabtransact"
12+
],
13+
"homepage":"https://github.com/sudiptpa/nabtransact",
14+
"license":"MIT",
15+
"authors":[
16+
{
17+
"name":"Sujip Thapa",
18+
"email":"sudiptpa@gmail.com"
19+
}
20+
],
21+
"autoload":{
22+
"psr-4":{
23+
"Omnipay\\NABTransact\\":"src/"
24+
}
4325
},
44-
"prefer-stable": true
26+
"require":{
27+
"omnipay/common":"^3",
28+
"cweagans/composer-patches":"^1.6"
29+
},
30+
"require-dev":{
31+
"omnipay/tests":"^3",
32+
"squizlabs/php_codesniffer":"^3",
33+
"phpro/grumphp":"^0.14.0"
34+
},
35+
"extra":{
36+
"branch-alias":{
37+
"dev-master":"3.0.x-dev"
38+
},
39+
"patches":{
40+
"guzzle/guzzle":{
41+
"Update CA":"patches/guzzle-guzzle-update-cacert.patch"
42+
}
43+
}
44+
},
45+
"scripts":{
46+
"test":"vendor/bin/phpunit",
47+
"check-style":"phpcs -p --standard=PSR2 src/",
48+
"fix-style":"phpcbf -p --standard=PSR2 src/"
49+
},
50+
"prefer-stable":true
4551
}

0 commit comments

Comments
 (0)