-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
34 lines (34 loc) · 1.04 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
{
"name": "sofyansitorus/wp-yes",
"description": "WordPress Yet Easy Settings class is PHP class for easy to build advanced admin page for WordPress.",
"homepage": "https://github.com/sofyansitorus/WordPress-Yet-Easy-Settings",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Sofyan Sitorus",
"email": "sofyansitorus@gmail.com",
"homepage": "https://github.com/sofyansitorus",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"includes/class-wp-yes.php"
]
},
"require": {
"php": ">=5.6.3"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"sirbrillig/phpcs-variable-analysis": "^2.7",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf"
}
}