-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.69 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
48
49
50
51
52
{
"name": "multisafepay/woocommerce",
"description": "A new WooCommerce plugin",
"type": "wordpress-plugin",
"version": "6.6.2",
"license": "MIT",
"minimum-stability": "RC",
"keywords" : [ "wordpress", "multisafepay" ],
"require": {
"multisafepay/php-sdk": "^5.12",
"nyholm/psr7": "^1.4",
"psr/http-client": "^1.0"
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"require-dev": {
"phpunit/phpunit" : "^8.5",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.3",
"woocommerce/woocommerce-sniffs": "^0.1",
"object-calisthenics/phpcs-calisthenics-rules": "^3.7",
"phpro/grumphp": "^1.0",
"yoast/phpunit-polyfills": "^1.0",
"phpstan/phpstan": "^1.5",
"php-stubs/woocommerce-stubs": "^6.0"
},
"autoload": {
"psr-4": {
"MultiSafepay\\WooCommerce\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MultiSafepay\\WooCommerce\\Tests\\Fixtures\\": "tests/fixtures/"
}
},
"scripts": {
"phpcs": "@php vendor/bin/phpcs --standard=phpcs.xml .",
"phpcbf": "@php vendor/bin/phpcbf --standard=phpcs.xml .",
"run-grumphp": "@php vendor/bin/grumphp run --tasks=phpcs,phpunit",
"phpunit": "@php vendor/bin/phpunit",
"phpstan": "@php vendor/bin/phpstan analyse --configuration=tests/phpstan/phpstan.neon --memory-limit 1G --error-format github"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"php-http/discovery": false
}
}
}