-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.99 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 1.99 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
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
{
"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": "[email protected]",
"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.3"
},
"sort-packages": true
},
"minimum-stability": "dev",
"require": {
"php": "^8.3",
"ext-json": "*",
"thefrosty/wp-utilities": "^3.8"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpunit/php-code-coverage": "^9",
"phpcompatibility/php-compatibility": "*",
"phpunit/phpunit": "^9",
"rector/rector": "^2.0",
"roots/wordpress": "^6.8",
"slevomat/coding-standard": "~8.18",
"squizlabs/php_codesniffer": "^3.2",
"wp-coding-standards/wpcs": "^3.1",
"wp-phpunit/wp-phpunit": "^6.8",
"yoast/phpunit-polyfills": "^4.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 --standard=phpcs-ruleset.xml"
],
"phpunit": [
"./vendor/bin/phpunit --colors --verbose"
],
"eslint": [
"npm run eslint"
],
"tests": [
"@phpcs",
"@phpunit",
"@eslint"
]
}
}