-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.44 KB
/
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
45
46
47
48
49
50
51
52
53
54
{
"name": "andylibrian/omnipay-veritrans",
"type": "library",
"description": "Veritrans driver for the Omnipay PHP payment processing library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"purchase",
"veritrans"
],
"homepage": "https://github.com/andylibrian/omnipay-veritrans",
"authors": [
{
"name": "Andy Librian",
"email": "[email protected]",
"homepage": "http://andylibrian.pro",
"role": "Lead Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/andylibrian/omnipay-veritrans/contributors"
}
],
"require": {
"omnipay/common": "~2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~1.4",
"omnipay/tests": "~2.0",
"behat/behat": "~3.0",
"behat/mink": "~1.6",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.1",
"behat/mink-selenium2-driver": "~1.2"
},
"autoload": {
"psr-4": {
"Omnipay\\Veritrans\\": "src/"
}
},
"license": "MIT",
"support": {
"issues": "https://github.com/andylibrian/omnipay-veritrans/issues",
"source": "https://github.com/andylibrian/omnipay-veritrans"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}