forked from omise/omise-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 1.18 KB
/
composer.json
File metadata and controls
29 lines (29 loc) · 1.18 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
{
"name": "omise/omise-woocommerce",
"description": "An official payment extension which provides support for Omise payment gateway for store builders working on the WooCommerce platform.",
"homepage": "https://www.omise.co/",
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^5.7 || ^9.5",
"mockery/mockery": "^1.6",
"brain/monkey": "^2.6",
"woocommerce/woocommerce-blocks": "^11.7",
"wp-coding-standards/wpcs": "^3.0",
"voku/simple_html_dom": "^4.8",
"squizlabs/php_codesniffer": "^3.13"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox --colors",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage/coverage.xml --coverage-html=coverage",
"test:coverage:xml": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage/coverage.xml",
"lint": "vendor/bin/phpcs --colors -s",
"lint:fix": "vendor/bin/phpcbf"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}