This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
77 lines (77 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "liquidweb/woocommerce-custom-orders-table",
"description": "Store WooCommerce order data in a custom table for improved performance",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"readme": "README.md",
"authors": [
{
"name": "Liquid Web",
"homepage": "https://www.liquidweb.com"
},
{
"name": "Mindsize",
"homepage": "https://mindsize.me"
}
],
"support": {
"issues": "https://github.com/liquidweb/woocommerce-custom-orders-table/issues",
"source": "https://github.com/liquidweb/woocommerce-custom-orders-table"
},
"require": {
"composer/installers": "^1.6",
"php": ">=5.6|>=7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"phpcompatibility/php-compatibility": "^9.0",
"phpunit/phpunit": "^6.5",
"woocommerce/woocommerce-git-hooks": "*",
"woocommerce/woocommerce-sniffs": "^0.0.9",
"wp-coding-standards/wpcs": "^2.2.0"
},
"autoload-dev": {
"classmap": [
"tests/test-tools"
],
"files": [
"tests/test-tools/utils.php"
]
},
"scripts": {
"post-install-cmd": [
"WooCommerce\\GitHooks\\Hooks::postHooks"
],
"post-update-cmd": [
"WooCommerce\\GitHooks\\Hooks::postHooks"
],
"pre-install-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
],
"pre-update-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
],
"test": [
"phpunit --testsuite=plugin --testdox"
],
"test:all": [
"phpunit --testdox"
],
"test-coverage": [
"phpunit --testsuite=plugin --coverage-html=tests/coverage"
]
},
"scripts-descriptions": {
"test": "Run the plugin test suite",
"test:all": "Run all test suites.",
"test-coverage": "Generate test coverage for the plugin"
},
"prefer-stable": true,
"config": {
"platform": {
"php": "7.3"
},
"preferred-install": "dist",
"sort-packages": true
}
}