forked from comicrelief/omnipay-worldpay-cg-hosted
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·61 lines (61 loc) · 1.23 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
{
"name": "catharsisjelly/omnipay-worldpay-cg-hosted",
"type": "library",
"description": "WorldPay Hosted Corporate Gateway driver for the Omnipay payment processing library",
"keywords": [
"corporate",
"gateway",
"merchant",
"omnipay",
"pay",
"worldpay",
"payment"
],
"homepage": "https://github.com/comicrelief/omnipay-worldpay-cg-hosted",
"license": "MIT",
"authors": [
{
"name": "Dave Nash",
"email": "dave.nash@teaandcode.com"
},
{
"name": "Noel Light-Hilary",
"email": "n.light-hilary@comicrelief.com"
},
{
"name": "Chris Lock",
"email": "code@catharsis.co.uk"
}
],
"autoload": {
"psr-0": {
"Omnipay\\WorldpayCGHosted\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Omnipay\\WorldpayCGHosted\\Tests\\": "tests/"
}
},
"require": {
"php": "^7 || ^8",
"omnipay/common": "^3.0"
},
"require-dev": {
"omnipay/tests": "^3.0",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"test": [
"phpunit",
"@lint"
],
"lint": [
"phpcs --standard=PSR2 --encoding=utf-8 src tests"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}