-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.13 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "spaze/phpinfo",
"description": "Extract phpinfo() output into a variable, sanitize sensitive values, and move inline styles to external CSS.",
"keywords": ["PHP","phpinfo"],
"license": "MIT",
"authors": [
{
"name": "Michal Špaček",
"homepage": "https://www.michalspacek.com/",
"email": "mail@michalspacek.cz"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"php-parallel-lint/php-console-highlighter": "^1.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"spaze/coding-standard": "^1.8",
"nette/tester": "^2.5.7"
},
"autoload": {
"psr-4": {
"Spaze\\PhpInfo\\": "src/"
}
},
"minimum-stability": "stable",
"scripts": {
"lint": "vendor/bin/parallel-lint --colors src/",
"phpcs": "vendor/bin/phpcs src/",
"phpstan": "vendor/bin/phpstan --ansi analyse --configuration phpstan.neon",
"tester": "vendor/nette/tester/src/tester --colors 1 tests/",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@tester"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}