-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 933 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name":"sudiptpa/omnipay-openpay",
"type":"library",
"description":"OpenPay driver for the Omnipay payment processing library.",
"keywords":[
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"openpay"
],
"homepage":"https://github.com/sudiptpa/openpay",
"license":"MIT",
"authors":[
{
"name":"Sujip Thapa",
"email":"[email protected]"
}
],
"autoload":{
"psr-4":{
"Omnipay\\Openpay\\":"src/"
}
},
"require":{
"omnipay/common":"^3"
},
"require-dev":{
"omnipay/tests":"^3",
"squizlabs/php_codesniffer":"^3"
},
"extra":{
"branch-alias":{
"dev-master":"3.0.x-dev"
}
},
"scripts":{
"test":"vendor/bin/phpunit",
"check-style":"phpcs -p --standard=PSR2 src/",
"fix-style":"phpcbf -p --standard=PSR2 src/"
},
"prefer-stable":true
}