-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 948 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 948 Bytes
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
{
"name": "deliciousbrains/wp-queue",
"description": "WordPress job queues",
"keywords": ["wordpress","queue","job"],
"license": "MIT",
"authors": [
{
"name": "Ashley Rich",
"email": "hello@ashleyrich.com"
},
{
"name": "Delicious Brains",
"email": "nom@deliciousbrains.com"
}
],
"require": {
"php": "^7.3|^8.0",
"nesbot/carbon": "^2|^3"
},
"autoload": {
"psr-4": {
"WP_Queue\\": "src\\WP_Queue"
},
"files": [
"src/functions.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"10up/wp_mock": "^0.5|^1",
"wp-coding-standards/wpcs": "^3",
"phpcompatibility/phpcompatibility-wp": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}