-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.46 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "duckdev/wp-queue-process",
"version": "2.0.0",
"type": "library",
"description": "WordPress non-blocking async requests and background queue processing with a swappable storage driver, server-load aware batching, and a self-healing cron.",
"keywords": [
"wordpress",
"background-processing",
"async",
"queue",
"cron"
],
"homepage": "https://github.com/duckdev/wp-queue-process",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Joel James",
"email": "me@joelsays.com",
"homepage": "https://duckdev.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/duckdev/wp-queue-process/issues/"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"brain/monkey": "^2.6",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"squizlabs/php_codesniffer": "^3.10"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"DuckDev\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DuckDev\\Queue\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"minimum-stability": "dev"
}