forked from digitickets/omnipay-gocardlessv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.61 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
55
56
57
58
59
60
61
62
63
{
"name": "digitickets/omnipay-gocardlessv2",
"type": "library",
"description": "GoCardless gateway for Omnipay payment processing library, using the v2 GoCardless API",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"gocardless",
"purchase"
],
"homepage": "https://github.com/digitickets/omnipay-gocardlessv2",
"license": "MIT",
"authors": [
{
"name": "Digitickets Contributors",
"homepage": "https://github.com/digitickets/omnipay-gocardlessv2/contributors"
},
{
"name": "Kayla Daniels",
"email": "[email protected]",
"role": "Original Developer of Base Package"
},
{
"name": "Barry vd. Heuvel",
"email": "[email protected]",
"role": "Original Developer of Base Package"
},
{
"name": "Omnipay Contributors",
"homepage": "https://github.com/thephpleague/omnipay-braintree/contributors",
"role": "Original Base Package"
}
],
"autoload": {
"psr-4": {
"Omnipay\\GoCardlessV2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\GoCardlessV2Tests\\": "tests/"
}
},
"require": {
"omnipay/common": "~2.0",
"gocardless/gocardless-pro": "^1",
"php": "^5.5|^7",
"symfony/event-dispatcher": "^2.8"
},
"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"
}
}