-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.22 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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": "zodiac1978/plugin-report",
"description": "A WordPress plugin that provides detailed information about currently installed plugins.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0"
},
"authors": [
{
"name": "Torsten Landsiedel",
"homepage": "https://torstenlandsiedel.de"
},
{
"name": "Roy Tanck",
"homepage": "https://roytanck.com/"
}
],
"support": {
"docs": "https://github.com/Zodiac1978/plugin-report/blob/main/README.md",
"forums": "https://wordpress.org/support/plugin/plugin-report/",
"issues": "https://github.com/Zodiac1978/plugin-report/issues",
"source": "https://github.com/Zodiac1978/plugin-report/"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-sqlite3": "*",
"szepeviktor/phpstan-wordpress": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"analyze": "@php ./vendor/bin/phpstan analyze"
}
}