forked from WPManageNinja/fluent-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 838 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 838 Bytes
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
{
"scripts": {
"phpstan": "phpstan analyse --memory-limit=1G --error-format=table > phpstan-errors.md",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage-report",
"test-coverage-clover": "phpunit --coverage-clover coverage.xml",
"test-setup": "bash bin/install-wp-tests.sh fluent_security_test root '' 127.0.0.1 latest"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4",
"yoast/phpunit-polyfills": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"FluentAuth\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}