-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.09 KB
/
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
{
"name": "jenko/wp-plugin-trouble-detector",
"description": "A composer plugin to detect potential trouble with WordPress plugins installed via composer.",
"type": "composer-plugin",
"require": {
"php": ">=7.4",
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "^9.5"
},
"extra": {
"class": "Jenko\\WpPluginTroubleDetector\\Plugin"
},
"license": "MIT",
"authors": [
{
"name": "Ian Jenkins",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"Jenko\\WpPluginTroubleDetector\\": "src"}
},
"autoload-dev": {
"psr-4": {"Jenko\\WpPluginTroubleDetector\\Tests\\": "tests"}
},
"scripts": {
"post-package-install": [
"Jenko\\WpPluginTroubleDetector\\Plugin::onPostPackageInstall"
],
"post-package-update": [
"Jenko\\WpPluginTroubleDetector\\Plugin::onPostPackageInstall"
]
}
}