-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "globalpayments/globalpayments-woocommerce",
"description": "This extension allows WooCommerce to use the available Global Payments payment gateways. All card data is tokenized using the respective gateway's tokenization service.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Global Payments"
}
],
"autoload": {
"psr-4": {
"GlobalPayments\\WooCommercePaymentGatewayProvider\\": "src/"
}
},
"config": {
"platform": {
"php": ">=7.4"
}
},
"require": {
"globalpayments/php-sdk": "8.0.1",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.69"
},
"scripts": {
"test": [
"phpcs",
"phpstan analyse --level 8 src test",
"phpunit"
]
}
}