-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.2 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
{
"name": "nawawi/docket-cronwp",
"description": "A command-line tool for executing WordPress cron events in parallel.",
"keywords": [
"wp-cron",
"parallel",
"wordpress",
"cronjob"
],
"type": "project",
"license": "MIT",
"homepage": "https://github.com/nawawi/docket-cronwp",
"authors": [ {
"name": "Nawawi Jamili",
"email": "[email protected]",
"homepage": "https://github.com/nawawi"
} ],
"repositories": [ {
"type": "vcs",
"url": "https://github.com/nawawi/docket-cronwp"
} ],
"support": {
"issues": "https://github.com/nawawi/docket-cronwp/issues",
"source": "https://github.com/nawawi/docket-cronwp"
},
"require": {
"php": ">=7.2.5",
"ext-pcntl": ">=7.2.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nawawi\\DocketCronWP\\": "includes/src"
},
"exclude-from-classmap": [
"/Tests/"
],
"classmap": [
"includes/src"
]
},
"config": {
"vendor-dir": "includes/vendor",
"optimize-autoloader": true
}
}