forked from nexcess/limit-orders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 2.83 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nexcess/limit-orders",
"description": "Automatically disable WooCommerce's checkout process after reaching a maximum number of orders.",
"type": "wordpress-plugin",
"license": "MIT",
"keywords": [
"woocommerce",
"woocommerce-extension"
],
"support": {
"issues": "https://github.com/nexcess/limit-orders/issues",
"source": "https://github.com/nexcess/limit-orders"
},
"readme": "README.md",
"authors": [
{
"name": "Nexcess",
"homepage": "https://www.nexcess.net"
},
{
"name": "Steve Grunwell",
"homepage": "https://stevegrunwell.com"
}
],
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": "^7.4 | ^8.0",
"composer-runtime-api": "^2"
},
"require-dev": {
"assertwell/wp-core-test-framework": "^0.2",
"composer/installers": "~1.0 || ^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"php-stubs/woocommerce-stubs": "^7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"szepeviktor/phpstan-wordpress": "^1.1",
"wp-coding-standards/wpcs": "^2.3",
"wpackagist-plugin/woocommerce": "^7.1",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"Nexcess\\LimitOrders\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Automattic\\WooCommerce\\": "vendor/wpackagist-plugin/woocommerce/src/",
"Tests\\": "tests/"
}
},
"scripts": {
"fix:standards": "./vendor/bin/phpcbf",
"test": [
"@test:unit",
"@test:standards",
"@test:analysis"
],
"test:analysis": "vendor/bin/phpstan analyze -c phpstan.neon.dist --memory-limit 512M",
"test:standards": "vendor/bin/phpcs",
"test:unit": "vendor/bin/phpunit --testdox --color=always"
},
"scripts-descriptions": {
"fix:standards": "Automatically fix coding standards violations where possible.",
"test": "Run all automated tests for the plugin.",
"test:analysis": "Perform static code analysis on the plugin.",
"test:standards": "Check the codebase against coding standards.",
"test:unit": "Run unit tests for the plugin."
},
"config": {
"platform": {
"php": "8.0"
},
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-disable": true
}
}