-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
67 lines (67 loc) · 1.92 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
{
"name": "chesio/bc-security",
"type": "wordpress-plugin",
"license": "Unlicense",
"description": "A WordPress plugin that helps keeping WordPress websites secure.",
"homepage": "https://github.com/chesio/bc-security",
"authors": [
{
"name": "Česlav Przywara",
"homepage": "https://www.chesio.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"keywords": [
"wordpress", "wordpress-plugin"
],
"support": {
"issues": "https://github.com/chesio/bc-security/issues"
},
"require": {
"php": "^8.1",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"brain/monkey": "^2.3",
"mockery/mockery": "^1.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^10.5",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.2",
"szepeviktor/phpstan-wordpress": "^1.0",
"yoast/phpunit-polyfills": "^2.0"
},
"autoload-dev": {
"psr-4": {
"BlueChip\\Security\\Tests\\Integration\\": "tests/integration/src",
"BlueChip\\Security\\Tests\\Unit\\": "tests/unit/src",
"BlueChip\\Security\\": "classes/BlueChip/Security",
"Psr\\Log\\": "classes/Psr/Log"
}
},
"scripts": {
"phpcs": "phpcs",
"phpstan": "phpstan analyze",
"full-integration-tests": "phpunit --configuration tests/integration/phpunit.xml",
"integration-tests": "phpunit --configuration tests/integration/phpunit.xml --exclude-group external --no-coverage",
"unit-tests": "phpunit --configuration tests/unit/phpunit.xml --no-coverage",
"unit-tests-with-coverage": "phpunit --configuration tests/unit/phpunit.xml",
"ci": [
"@phpcs",
"@phpstan",
"@unit-tests"
],
"test": [
"@phpcs",
"@phpstan",
"@integration-tests",
"@unit-tests"
]
}
}