-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 975 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
{
"name": "pay-now/omnipay-paynow",
"description": "Paynow gateway for Omnipay payment processing library",
"version": "1.0.3",
"keywords": [
"paynow",
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"payment processing"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mElements S.A.",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"omnipay/common": "^3",
"ext-json": "*"
},
"require-dev": {
"omnipay/tests": "^3"
},
"autoload": {
"psr-4": {
"Omnipay\\Paynow\\": "src"
}
},
"scripts": {
"test" : "./vendor/bin/phpunit",
"check-style": "./vendor/bin/phpcs -p --exclude=Generic.Files.LineLength --standard=PSR2 src/",
"fix-style": "./vendor/bin/phpcbf -p --standard=PSR4 src/"
}
}