-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.59 KB
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": "multisafepay/prestashop",
"description": "MultiSafepay module for PrestaShop 1.7",
"type": "prestashop-module",
"version": "6.4.0",
"keywords" : [ "prestashop" ],
"license": "OSL-3.0",
"require": {
"multisafepay/php-sdk": "^5.21",
"kriswallsmith/buzz": "^1.1",
"nyholm/psr7": "^1.3",
"ext-json": "*"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.1 || ^5",
"prestashop/phpstan-prestashop": "^2.0",
"prestashop/autoindex": "^2.1",
"phpro/grumphp": "^1.3 || ^2.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3",
"slevomat/coding-standard": "^8.0"
},
"autoload": {
"psr-4": {
"MultiSafepay\\PrestaShop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MultiSafepay\\Tests\\": "tests/Unit/src/"
}
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"allow-plugins": {
"phpro/grumphp": true,
"php-http/discovery": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "@php vendor/bin/phpcs -s --standard=phpcs.xml .",
"phpcbf": "@php vendor/bin/phpcbf --standard=phpcs.xml .",
"phpunit": "php vendor/bin/phpunit --testsuite prestashop-unit-tests",
"grumphp": "@php vendor/bin/grumphp run",
"phpstan": "_PS_ROOT_DIR_=./../../ vendor/bin/phpstan analyse --configuration=phpstan.neon --memory-limit 1G --error-format github"
}
}