forked from humanmade/Cavalcade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.45 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
{
"name": "tarosky/cavalcade",
"description": "A better wp-cron. Horizontally scalable, works perfectly with multisite.",
"homepage": "https://github.com/tarosky/cavalcade",
"type": "wordpress-muplugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Human Made",
"homepage": "https://hmn.md/"
},
{
"name": "Harai Akihiro",
"email": "akihiro.harai@tarosky.co.jp",
"homepage": "https://tarosky.co.jp"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^9.6.19",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=phpcs.xml $(find ./ -name '*.php')"
],
"fix": [
"vendor/bin/phpcbf -v --standard=phpcs.xml $(find ./ -name '*.php')"
]
},
"support": {
"issues": "https://github.com/tarosky/cavalcade/issues"
}
}