forked from Idrinth/webroot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.23 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": "idrinth/webroot",
"description": "This project allows you to easily configure virtual hosts with apache2.",
"keywords": [
"apache2",
"virtualhost",
"let's encrypt",
"linux"
],
"authors": [
{
"name": "Björn Büttner",
"homepage": "https://github.com/idrinth"
}
],
"autoload": {
"psr-4": {
"De\\Idrinth\\WebRoot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"De\\Idrinth\\WebRoot\\": "test"
}
},
"require": {
"php": "^7.4 | ^8",
"ext-pdo": "*",
"twig/twig": "*",
"vlucas/phpdotenv": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "*",
"symfony/process": "*",
"phan/phan": "*",
"php-parallel-lint/php-parallel-lint": "*"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox test",
"test-standards": "vendor/bin/phpcs --standard=psr12 bin src test",
"test-static": "vendor/bin/phan --no-progress-bar",
"fix-standards": "vendor/bin/phpcbf --standard=psr12 bin src test",
"lint": "vendor/bin/parallel-lint src bin test"
}
}