forked from Billmate/woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.12 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
{
"name": "billmate/billmate-payment-gateway-for-woocommerce",
"description": "An eCommerce toolkit that helps you sell anything. Beautifully.",
"homepage": "https://woocommerce.com/",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"wp-coding-standards/wpcs": "^2.2",
"brain/monkey": "^2.3"
},
"autoload": {
"psr-4": {
"Billmate\\WooCommerce\\": "src/",
"Billmate\\WooCommerce\\Tests\\": "tests/",
"Billmate\\WooCommerce\\Tests\\Inc\\": "tests/inc/",
"Billmate\\WooCommerce\\Tests\\TestCases\\": "tests/testcases/"
}
},
"scripts": {
"post-install-cmd": "phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"post-update-cmd" : "phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"php:codesniffer": "phpcs --report=full --colors -p --standard=WordPress-Extra src/ tests/",
"php:unit-tests": "phpunit Tests/",
"tests:all": "composer php:codesniffer && composer php:unit-tests"
}
}