-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
92 lines (92 loc) · 2.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "thefrosty/wp-utilities",
"description": "A library containing my standard development resources",
"license": "MIT",
"authors": [
{
"name": "Austin Passy",
"email": "[email protected]",
"homepage": "https://austin.passy.co",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"jjgrainger/posttypes": "^2.2",
"johnbillion/args": "^2.1",
"psr/container": "^2.0",
"symfony/http-foundation": "^6.4.14 || ^7.1.7"
},
"require-dev": {
"ext-simplexml": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"php-stubs/wordpress-stubs": "^6.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.13",
"phpunit/php-code-coverage": "^10",
"phpunit/phpunit": "^10",
"pimple/pimple": "^3.5",
"roots/wordpress": "^6.4",
"slevomat/coding-standard": "^8.8",
"squizlabs/php_codesniffer": "^3.9",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-coding-standards/wpcs": "dev-develop",
"wp-phpunit/wp-phpunit": "^6.4",
"yoast/phpunit-polyfills": "^2.0"
},
"suggest": {
"jjgrainger/posttypes": "Simple WordPress custom post types."
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"TheFrosty\\WpUtilities\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheFrosty\\WpUtilities\\Tests\\": "tests/unit/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": [
"bash ./bin/phpcs.sh"
],
"phpmd": [
"bash ./bin/phpmd.sh"
],
"phpstan": [
"bash ./bin/phpstan.sh"
],
"phpunit": [
"./vendor/bin/phpunit --colors --coverage-html ./tests/results && php ./tests/clover-results.php ./tests/clover.xml 2"
],
"psalm": [
"bash ./bin/psalm.sh"
],
"tests": [
"@phpcs",
"@phpunit"
]
}
}