-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.56 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
{
"autoload-dev": {
"psr-4": {
"WPBDP\\Tests\\": [
"tests/includes",
"tests/suite/"
]
}
},
"require-dev": {
"antecedent/patchwork": "^2.0",
"lucatume/wp-browser": "*",
"codeception/module-asserts": "^2",
"codeception/module-phpbrowser": "^2",
"codeception/module-webdriver": "^2",
"codeception/module-db": "^2",
"codeception/module-filesystem": "^2",
"codeception/module-cli": "*",
"codeception/util-universalframework": "*",
"codeception/specify": "*",
"codeception/verify": "*",
"yoast/phpunit-polyfills": "^2",
"php-stubs/wordpress-stubs": "^6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"wp-coding-standards/wpcs": "^3.0",
"automattic/vipwpcs": "^3.0",
"squizlabs/php_codesniffer": "^3.9",
"friendsofphp/php-cs-fixer": "^3.54",
"slevomat/coding-standard": "^8.15"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4",
"ext-mysqli": "7.4",
"ext-zip": "7.4"
},
"sort-packages": true
},
"scripts": {
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml --report-summary --report-source",
"phpcs": "vendor/bin/phpcs -p -s -v -n . --standard=phpcs.xml --extensions=php",
"phpcsfixer": "vendor/bin/php-cs-fixer fix --dry-run --verbose",
"phpstan": "vendor/bin/phpstan analyze ./ --memory-limit=2G",
"phpunit": "php vendor/bin/codecept run wpunit"
}
}