-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.09 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
{
"name": "knightar/omnipay-total-apps-gateway",
"description": "Total Apps Gateway driver for the Omnipay PHP payment processing library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"purchase",
"mojopay"
],
"homepage": "https://github.com/knightar/omnipay-total-apps-gateway",
"license": "MIT",
"authors": [
{
"name": "Brandon Lis",
"email": "[email protected]",
"homepage": "http://ihub.global",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8",
"omnipay/common": "^3",
"ext-xml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"omnipay/tests": "^4.1",
"guzzlehttp/guzzle": "^7.0.1"
},
"autoload": {
"psr-4": {
"Omnipay\\TotalAppsGateway\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\TotalAppsGateway\\Test\\": "tests"
}
},
"scripts": {
"test": "../../bin/phpunit"
}
}