-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
41 lines (41 loc) · 1021 Bytes
/
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
{
"name": "deliciousbrains/wp-queue",
"description": "WordPress job queues",
"keywords": ["wordpress","queue","job"],
"license": "MIT",
"authors": [
{
"name": "Ashley Rich",
"email": "[email protected]"
},
{
"name": "Delicious Brains",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3.0",
"nesbot/carbon": "^2.0"
},
"autoload": {
"psr-4": {
"WP_Queue\\": "src\\WP_Queue"
},
"files": [
"src/functions.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"10up/wp_mock": "^0.4.2",
"humanmade/coding-standards": "^1.1",
"php-stubs/wp-cli-stubs": "^2.6",
"phpstan/phpstan": "^1.4",
"szepeviktor/phpstan-wordpress": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}