forked from ebanx/woocommerce-gateway-ebanx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 891 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
{
"name": "ebanx/woocommerce-gateway-ebanx",
"description": "This plugin enables you to integrate your WooCommerce store with the EBANX payment gateway.",
"type": "project",
"license": "Apache-2.0",
"minimum-stability": "dev",
"require": {
"php" : ">=5.6.0,<8.0.0-dev",
"ebanx/benjamin": "1.19.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "^0.14",
"exussum12/coverage-checker": "^0.8.0",
"10up/wp_mock": "0.2.0"
},
"scripts": {
"test": "phpunit",
"test-all": "composer test && composer style-check",
"style-check" : "phpcs -p ./"
},
"autoload": {
"psr-4": {
"EBANX\\Plugin\\": "lib/Plugin"
}
}
}