-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.01 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": "digitickets/omnipay-pay360",
"type": "library",
"description": "Payment Gateway driver for Pay360",
"keywords": [
"Pay360",
"gateway",
"merchant",
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/digitickets/omnipay-pay360",
"license": "MIT",
"authors": [
{
"name": "Glenn Jenkins",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"scpService": "lib"
},
"psr-4": {
"DigiTickets\\Pay360\\": "src"
}
},
"require": {
"omnipay/common": "~2.0",
"php": "^7",
"symfony/event-dispatcher": "^2.8",
"ext-soap": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"omnipay/tests": "~2.0",
"satooshi/php-coveralls": "^1.0"
},
"scripts": {
"run-sa": "vendor/bin/phpstan analyse --ansi --no-progress -c phpstan.neon -l 4 src tests",
"run-fixer": "vendor/bin/php-cs-fixer fix",
"run-tests": "vendor/bin/phpunit"
}
}