forked from klaussilveira/gitlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "klaussilveira/gitlist",
"description": "An elegant git repository viewer",
"keywords": ["scm", "vcs", "git", "repository", "github", "gitweb"],
"type": "project",
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"ext-iconv": "*",
"ext-mbstring": "*",
"league/commonmark": "^2.1",
"nesbot/carbon": "^2.55",
"symfony/asset": "^6.0",
"symfony/cache": "^6.0",
"symfony/console": "^6.0",
"symfony/form": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/monolog-bundle": "^3.5",
"symfony/process": "^6.0",
"symfony/string": "^6.0",
"symfony/templating": "^6.0",
"symfony/translation": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/webpack-encore-bundle": "^1.13",
"symfony/yaml": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9.5",
"symfony/debug-bundle": "^6.0",
"symfony/dotenv": "^6.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"process-timeout": 0
},
"autoload": {
"psr-4": {
"GitList\\": "src/"
}
},
"scripts": {
"auto-scripts": [
"bin/console cache:clear",
"bin/console assets:install --symlink --relative public"
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test": [
"@cs",
"@unit",
"@lint",
"@stan"
],
"format": [
"vendor/bin/php-cs-fixer fix -v --show-progress=dots"
],
"lint": [
"bin/console lint:twig assets/themes/",
"bin/console lint:yaml assets/translations/",
"bin/console lint:yaml config/",
"find src -name '*.php' -print0 | xargs -0 -n1 -P8 php -l"
],
"cs": [
"vendor/bin/php-cs-fixer fix --dry-run -v --show-progress=dots"
],
"unit": [
"vendor/bin/phpunit"
],
"stan": [
"vendor/bin/phpstan analyse -c phpstan.neon -l 5 src/"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false
}
}
}