-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 1.07 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
{
"name": "luizbills/wp-options-page",
"description": "Easy way to build options/settings pages in your WordPress plugins and themes.",
"keywords": ["wordpress", "options", "settings", "library"],
"homepage": "https://github.com/luizbills/wp-options-page",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Luiz Bills",
"email": "[email protected]",
"homepage": "https://www.luizpb.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/luizbills/wp-options-page/issues",
"docs": "https://github.com/luizbills/wp-options-page/wiki"
},
"funding": [
{
"type": "donate",
"url": "https://www.luizpb.com/donate/"
}
],
"autoload": {
"files": ["src/class-wp-options-page.php"]
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"check": "phpstan analyse"
}
}