-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.05 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
{
"name": "spaze/phpinfo",
"description": "Extract phpinfo() into a variable and move CSS to external file.",
"keywords": ["PHP","phpinfo"],
"license": "MIT",
"authors": [
{
"name": "Michal Špaček",
"homepage": "https://www.michalspacek.com/",
"email": "mail@michalspacek.cz"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^1.0",
"phpstan/phpstan": "^1.9",
"spaze/coding-standard": "^1.3",
"nette/tester": "^2.4"
},
"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
}
}
}