-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.08 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "nariyanto/wp-cron-inspector-lite",
"description": "Find duplicate, stuck, and suspicious WordPress cron events before they cause support issues.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/nariyanto/wp-cron-inspector-lite",
"support": {
"issues": "https://github.com/nariyanto/wp-cron-inspector-lite/issues",
"source": "https://github.com/nariyanto/wp-cron-inspector-lite"
},
"authors": [
{
"name": "Septiyan Nariyanto",
"homepage": "https://nariyanto.id"
}
],
"keywords": [
"wordpress",
"wordpress-plugin",
"wp-cron",
"cron",
"debugging",
"support"
],
"require": {
"php": ">=7.4",
"composer/installers": "^2.2"
},
"autoload": {
"psr-4": {
"Nariyanto\\CronDiagnostics\\": "src/"
}
},
"scripts": {
"test": "php tests/run.php",
"validate-readme": "php tests/validate-readme.php",
"lint": "find . -path ./vendor -prune -o -name '*.php' -print0 | xargs -0 -n1 php -l",
"build-release": "bash scripts/build-release.sh"
}
}