forked from paytrail/paytrail-for-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.38 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
{
"name": "paytrail/paytrail-for-woocommerce",
"type": "wordpress-plugin",
"description": "Paytrail is a payment gateway that offers 20+ payment methods for Finnish customers.",
"authors": [{
"name": "Joonas Loueranta",
"email": "[email protected]",
"homepage": "https://github.com/loueranta-paytrail",
"role": "Manager"
}],
"support": {
"email": "[email protected]",
"issues": "https://github.com/paytrail/paytrail-for-woocommerce/issues",
"source": "https://github.com/paytrail/paytrail-for-woocommerce"
},
"keywords": [
"wordpress", "woocommerce", "payment gateway", "paytrail"
],
"license": "MIT",
"autoload": {
"psr-4": { "Paytrail\\WooCommercePaymentGateway\\": "src/" }
},
"require": {
"php": ">=7.3",
"ext-mbstring": "*",
"paytrail/paytrail-php-sdk": "^2.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"woocommerce/woocommerce-sniffs": "^0.1.3",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=pbs-rules-set.xml --warning-severity=0 --ignore-annotations --extensions=php,html src"
]
}
}