-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.54 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.54 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": "rwsite/wp-queue",
"description": "Background job processing and WP-Cron management for WordPress",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"queue",
"background-processing",
"cron",
"jobs",
"scheduler",
"wp-cron"
],
"homepage": "https://github.com/rwsite/wp-queue",
"authors": [
{
"name": "Aleksei Tikhomirov",
"email": "admin@rwsite.ru",
"homepage": "https://rwsite.ru"
}
],
"support": {
"issues": "https://github.com/rwsite/wp-queue/issues",
"source": "https://github.com/rwsite/wp-queue"
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"pestphp/pest": "^3.0",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6",
"brain/monkey": "^2.6",
"yoast/phpunit-polyfills": "^3.0"
},
"autoload": {
"psr-4": {
"WPQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WPQueue\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"test:unit": "pest tests/Unit",
"test:e2e": "pest tests/Feature --configuration=phpunit-e2e.xml",
"test:coverage": "pest --coverage",
"lint": "pint",
"lint:check": "pint --test"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}