forked from techcrunch/wp-async-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 807 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
{
"name" : "techcrunch/wp-async-task",
"description" : "Run asynchronous tasks for long-running operations in WordPress",
"minimum-stability": "dev",
"license" : "MIT",
"type" : "wordpress-plugin",
"authors" : [
{
"name": "Alex Khadiwala",
"role": "developer"
},
{
"name": "Nicolas Vincent",
"role": "developer"
},
{
"name" : "Eric Mann",
"email": "[email protected]",
"role" : "developer"
},
{
"name" : "John P. Bloch",
"email": "[email protected]",
"role" : "developer"
}
],
"require-dev" : {
"10up/wp_mock" : "dev-master",
"phpunit/phpunit": "*@stable"
},
"autoload" : {
"classmap": ["wp-async-task.php"]
},
"autoload-dev" : {
"classmap": ["tests/phpunit/mocks/"]
}
}