-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
47 lines (47 loc) · 1.03 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
{
"name": "pay-now/paynow-prestashop",
"description": "Paynow gateway module for PrestaShop",
"license": "MIT",
"authors": [
{
"name": "mElements S.A.",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"pay-now/paynow-php-sdk": "2.4.3",
"nyholm/psr7": "^1.2",
"php-http/curl-client": "^2.1"
},
"require-dev": {
"prestashop/autoindex": "^1.0",
"friendsofphp/php-cs-fixer": "^2.18",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"platform": {
"php": "7.2"
},
"prepend-autoloader": false,
"optimize-autoloader": true
},
"type": "prestashop-module",
"minimum-stability": "stable",
"scripts": {
"cs": [
"vendor/bin/phpcs --standard=PSR2 --ignore=*/vendor/*,*/Test/* ."
],
"cs-fix": [
"php vendor/bin/phpcbf --standard=PSR2 --ignore=*/vendor/* ."
]
},
"extra": {
"hooks": {
"pre-commit": [
"php vendor/bin/phpcbf --standard=PSR2 --ignore=*/vendor/* ."
]
}
}
}