-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.08 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
{
"name": "jeremyfelt/shortnotes",
"type": "wordpress-plugin",
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"ext-json": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.9",
"phpunit/phpunit": "^9",
"sirbrillig/phpcs-variable-analysis": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^2",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"php-stubs/wordpress-tests-stubs": "^6.2"
},
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2048M"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.0"
}
}
}