-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.04 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.04 KB
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": "silver-assist/security-suite",
"description": "Comprehensive security suite for WordPress with advanced GraphQL protection",
"type": "wordpress-plugin",
"license": "PolyForm-Noncommercial-1.0.0",
"authors": [
{
"name": "Silver Assist",
"homepage": "http://silverassist.com/"
}
],
"keywords": [
"wordpress",
"security",
"graphql",
"login-protection",
"authentication",
"rate-limiting",
"psr-4"
],
"homepage": "http://silverassist.com/",
"require": {
"php": ">=8.2",
"silverassist/wp-github-updater": "^1.3",
"silverassist/wp-settings-hub": "^1.2"
},
"require-dev": {
"axepress/wp-graphql-stubs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.1.2",
"miguelcolmenares/cf7-stubs": "^6.1",
"php-stubs/wordpress-stubs": "^6.6",
"php-stubs/wordpress-tests-stubs": "^6.6",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-coding-standards/wpcs": "^3.0",
"yoast/phpunit-polyfills": "^4.0"
},
"autoload": {
"psr-4": {
"SilverAssist\\Security\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SilverAssist\\Security\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml",
"phpcbf": "bash scripts/run-phpcbf-safe.sh",
"phpstan": "php -d memory_limit=1G vendor/bin/phpstan analyse src/ --no-progress",
"test": "bash scripts/run-quality-checks.sh"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"support": {
"issues": "http://silverassist.com/support",
"source": "http://silverassist.com/source"
}
}