-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
79 lines (79 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dwnload/wp-settings-api",
"description": "A PHP class abstraction that removes all the headaches of the WordPress settings API under the hood and builds a nice options panel on the fly.",
"license": "MIT",
"authors": [
{
"name": "Austin Passy",
"email": "thefrosty@users.noreply.github.com",
"homepage": "https://austin.passy.co",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.0"
},
"sort-packages": true
},
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"ext-json": "*",
"thefrosty/wp-utilities": "^3.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"inpsyde/php-coding-standards": "dev-development",
"phpunit/php-code-coverage": "^9",
"phpcompatibility/php-compatibility": "*",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"roots/wordpress": "~6.5",
"slevomat/coding-standard": "~8.12",
"squizlabs/php_codesniffer": "^3.2",
"wp-phpunit/wp-phpunit": "~6.5",
"yoast/phpunit-polyfills": "^2.0"
},
"suggest": {
"frontpack/composer-assets-plugin": "Composer plugin for copying of frontend assets into public directory."
},
"autoload": {
"psr-4": {
"Dwnload\\WpSettingsApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dwnload\\Tests\\WpSettingsApi\\": "tests/unit"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": [
"bash ./vendor/thefrosty/wp-utilities/bin/phpcs.sh"
],
"phpmd": [
"bash ./vendor/thefrosty/wp-utilities/bin/phpmd.sh"
],
"phpunit": [
"./vendor/bin/phpunit --colors --verbose"
],
"eslint": [
"npm run eslint"
],
"tests": [
"@phpcs",
"@phpunit",
"@eslint"
]
}
}