-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.33 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "spaze/security-txt",
"description": "security.txt (RFC 9116) generator, parser, validator",
"license": "MIT",
"authors": [
{
"name": "Michal Špaček",
"homepage": "https://www.michalspacek.com/"
}
],
"require-dev": {
"php": "^8.3",
"nette/tester": "^2.5",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^2.1.18",
"phpstan/phpstan-strict-rules": "^2.0",
"psalm/phar": "^6.10",
"spaze/coding-standard": "^1.9",
"spaze/phpcs-phar": "^4.0",
"spaze/phpstan-disallowed-calls": "^4.5"
},
"suggest": {
"ext-gnupg": "Needed to verify and create signatures"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Spaze\\SecurityTxt\\": "src/"
}
},
"bin": [
"bin/checksecuritytxt.php"
],
"scripts": {
"cs-fix": "vendor/bin/phpcbf bin/ src/ tests/",
"lint": "vendor/bin/parallel-lint --colors bin/ src/ tests/",
"phpcs": "vendor/bin/phpcs bin/ src/ tests/",
"phpstan": "vendor/bin/phpstan -vvv --ansi analyse --configuration phpstan.neon",
"psalm": "vendor/bin/psalm.phar",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@tester",
"@psalm"
],
"tester": "vendor/bin/tester -c tests/php-unix.ini -d zend.assertions=1 --colors 1 --coverage tests/temp/coverage.html --coverage-src src/ tests/"
}
}