Skip to content

Commit 46f8eb5

Browse files
committed
docs: add badges and packagist metadata
1 parent 8bce332 commit 46f8eb5

2 files changed

Lines changed: 30 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Cron Inspector Lite
22

3+
[![CI](https://github.com/nariyanto/wp-cron-inspector-lite/actions/workflows/ci.yml/badge.svg)](https://github.com/nariyanto/wp-cron-inspector-lite/actions/workflows/ci.yml)
4+
[![Latest Release](https://img.shields.io/github/v/release/nariyanto/wp-cron-inspector-lite?label=release)](https://github.com/nariyanto/wp-cron-inspector-lite/releases)
5+
[![Packagist Downloads](https://img.shields.io/packagist/dt/nariyanto/wp-cron-inspector-lite?label=packagist%20downloads)](https://packagist.org/packages/nariyanto/wp-cron-inspector-lite)
6+
[![PHP](https://img.shields.io/badge/PHP-%3E%3D%207.4-777bb4.svg)](https://www.php.net/)
7+
[![WordPress](https://img.shields.io/badge/WordPress-%3E%3D%206.0-21759b.svg)](https://wordpress.org/)
8+
[![License](https://img.shields.io/badge/license-GPL--2.0--or--later-blue.svg)](https://www.gnu.org/licenses/gpl-2.0.html)
9+
310
Find duplicate, stuck, and suspicious WordPress cron events before they cause support issues.
411

512
This plugin is read-only in the initial version. It lists scheduled WP-Cron events, highlights duplicate hooks, flags unusually frequent recurring events, and provides a support-friendly report.

composer.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
"description": "Find duplicate, stuck, and suspicious WordPress cron events before they cause support issues.",
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0-or-later",
6+
"homepage": "https://github.com/nariyanto/wp-cron-inspector-lite",
7+
"support": {
8+
"issues": "https://github.com/nariyanto/wp-cron-inspector-lite/issues",
9+
"source": "https://github.com/nariyanto/wp-cron-inspector-lite"
10+
},
11+
"authors": [
12+
{
13+
"name": "Septiyan Nariyanto",
14+
"homepage": "https://nariyanto.id"
15+
}
16+
],
17+
"keywords": [
18+
"wordpress",
19+
"wordpress-plugin",
20+
"wp-cron",
21+
"cron",
22+
"debugging",
23+
"support"
24+
],
25+
"require": {
26+
"php": ">=7.4",
27+
"composer/installers": "^2.2"
28+
},
629
"autoload": {
730
"psr-4": {
831
"Nariyanto\\WPCronInspectorLite\\": "src/"
@@ -13,8 +36,5 @@
1336
"validate-readme": "php tests/validate-readme.php",
1437
"lint": "find . -path ./vendor -prune -o -name '*.php' -print0 | xargs -0 -n1 php -l",
1538
"build-release": "bash scripts/build-release.sh"
16-
},
17-
"require": {
18-
"php": ">=7.4"
1939
}
2040
}

0 commit comments

Comments
 (0)