-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.9 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.9 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
{
"name": "thefrosty/wp-debug-log-widget",
"type": "wordpress-plugin",
"description": "Adds an admin dashboard widget to parse the WordPress error log file.",
"license": "MIT",
"authors": [
{
"name": "Austin Passy",
"email": "thefrosty@users.noreply.github.com",
"homepage": "https://austin.passy.co"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^8.3",
"ext-openssl": "*",
"composer/installers": "~2.0",
"pimple/pimple": "~3.0",
"symfony/http-foundation": "^7.2",
"thefrosty/wp-utilities": "^3.8"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"ext-simplexml": "*",
"phpcompatibility/php-compatibility": "*",
"phpunit/php-code-coverage": "^11",
"phpunit/phpunit": "^11",
"roots/wordpress": "~6.7",
"slevomat/coding-standard": "~8.8",
"squizlabs/php_codesniffer": "^3.2",
"symfony/var-dumper": "^7.0",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^4.0"
},
"autoload": {
"psr-4": {
"TheFrosty\\WpDebugLogWidget\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TheFrosty\\Tests\\WpDebugLogWidget\\": "tests/unit"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": [
"bash ./vendor/thefrosty/wp-utilities/bin/phpcs.sh"
],
"phpunit": [
"./vendor/bin/phpunit --colors --coverage-html ./tests/results && php ./tests/clover-results.php ./tests/clover.xml 30"
],
"tests": [
"@phpcs",
"@phpunit"
]
}
}