-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
composer.json
45 lines (45 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
39
40
41
42
43
44
45
{
"name": "bueltge/wordpress-admin-style",
"description": "Shows the WordPress admin styles on one page to help you to develop WordPress compliant",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"homepage": "https://github.com/bueltge/wordpress-admin-style",
"authors": [
{
"name": "Inpsyde GmbH",
"homepage": "https://inpsyde.com",
"email": "[email protected]",
"role": "Company"
},
{
"name": "Frank Bültge",
"homepage": "https://bueltge.de",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">5.2.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3",
"wp-coding-standards/wpcs": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"csf": "@php ./vendor/bin/phpcbf",
"pu": "@php ./vendor/bin/phpunit",
"qa": [
"@cs",
"@pu"
]
}
}