-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.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
{
"name": "wordpress/plugin-check-internal",
"description": "An Addon for internal Checks made by Plugin Review Team.",
"license": "GPL-2.0-or-later",
"type": "project",
"require": {
"php": ">=7.2.24",
"ext-json": "*"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"slevomat/coding-standard": "^8.15",
"wp-cli/extension-command": "^2.1",
"wp-cli/wp-cli": "^2.11",
"wp-cli/wp-cli-tests": "^4",
"wp-coding-standards/wpcs": "^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
// "WordPress\\Plugin_Check_Internal\\": "./includes/"
}
},
"autoload-dev": {
"psr-4": {
//"WordPress\\Plugin_Check_Internal\\Behat_Utils\\": "tests/behat/includes"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"platform": {
"php": "7.2.24"
},
"sort-packages": true
},
"scripts": {
"behat": "BEHAT_FEATURES_FOLDER=tests/behat/features run-behat-tests",
"behat-rerun": "BEHAT_FEATURES_FOLDER=tests/behat/features rerun-behat-tests",
"format": "phpcbf --standard=phpcs.xml.dist",
"lint": "phpcs --standard=phpcs.xml.dist",
"prepare-behat-tests": "install-package-tests"
}
}