-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
49 lines (49 loc) · 1013 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "pay-now/paynow-woocommerce",
"description": "paynow.pl plugin for WooCommerce",
"license": "GPLv3",
"version": "2.5.7",
"authors": [
{
"name": "mElements S.A.",
"email": "[email protected]"
}
],
"type": "woocommerce-plugin",
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"pay-now/paynow-php-sdk": "2.4.2",
"nyholm/psr7": "^1.2",
"php-http/curl-client": "^2.1",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"woocommerce/woocommerce-sniffs": "^0.1.1"
},
"scripts": {
"cs": [
"vendor/bin/phpcs --ignore=includes/templates/*"
],
"cs-fix": [
"php vendor/bin/phpcbf"
]
},
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"php-http/discovery": true
}
},
"extra": {
"hooks": {
"pre-commit": [
"php vendor/bin/phpcbf"
]
}
}
}