-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.71 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.71 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
63
{
"name": "devgeniem/wp-queue",
"type": "wordpress-muplugin",
"description": "WordPress Queue is a modular library for managing queued tasks in WordPress.",
"authors": [
{
"name": "Ville Siltala",
"email": "ville.siltala@geniem.com",
"homepage": "https://geniem.com/",
"role": "Developer"
}
],
"keywords": [
"wordpress",
"mu-plugin",
"queue",
"background process",
"asynchronous"
],
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Geniem\\Queue\\": [
"src/",
"plugin.php"
]
}
},
"require": {
"php": "^8.0",
"psr/log": "^1.1.3",
"psr/container": "^1.1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"devgeniem/geniem-rules-codesniffer": "^1",
"brainmaestro/composer-git-hooks": "^v2.8.5",
"phpunit/phpunit": "^9.6",
"10up/wp_mock": "^0.4.2",
"predis/predis": "^2.0",
"m6web/redis-mock": "^5.6"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs --standard=Geniem plugin.php src/",
"lint-without-warnings": "vendor/bin/phpcs --standard=Geniem plugin.php src/ --warning-severity=8",
"cghooks": "vendor/bin/cghooks"
},
"extra": {
"hooks": {
"pre-commit": [
"composer lint-without-warnings"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}