Skip to content

Commit 871c9bc

Browse files
Copilotdd32
andcommitted
Add plugin source files (composer.json, entry point, command class)
Co-authored-by: dd32 <767313+dd32@users.noreply.github.com>
1 parent efd7696 commit 871c9bc

25 files changed

Lines changed: 2575 additions & 0 deletions

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "dd32/wpcli-cron-concurrent",
3+
"description": "Runs WordPress cron tasks concurrently via wp-cli.",
4+
"type": "wp-cli-package",
5+
"keywords": ["wp-cli", "cron", "concurrent"],
6+
"license": "MIT",
7+
"require": {
8+
"wp-cli/wp-cli": "^2.0"
9+
},
10+
"autoload": {
11+
"classmap": ["src/"],
12+
"files": ["cron-concurrent.php"]
13+
},
14+
"extra": {
15+
"commands": [
16+
"cron-concurrent",
17+
"cron-concurrent run"
18+
]
19+
},
20+
"minimum-stability": "dev",
21+
"prefer-stable": true,
22+
"require-dev": {
23+
"wp-cli/cron-command": "^2.3"
24+
}
25+
}

0 commit comments

Comments
 (0)