-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 981 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
42
43
44
{
"name": "wp-launchpad/uninstaller-take-off",
"description": "Uninstaller library for Launchpad framework",
"minimum-stability": "stable",
"license": "proprietary",
"type": "library",
"authors": [
{
"name": "coquardcyr",
"email": "coquardcyr@gmail.com"
}
],
"require": {
"wp-launchpad/cli": "^1.0",
"wp-launchpad/uninstaller": "^0.1",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8 || ^9",
"wp-media/phpunit": "^3.0"
},
"autoload": {
"psr-4": {
"LaunchpadUninstallTakeOff\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"LaunchpadUninstallTakeOff\\Tests\\": "tests/"
}
},
"extra": {
"launchpad": {
"provider" : "LaunchpadUninstallTakeOff\\ServiceProvider",
"command": "uninstaller:initialize",
"install": true,
"clean": true,
"libraries": {
"wp-launchpad/uninstaller": "^0.1"
}
}
}
}