-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.94 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
{
"name": "csoellinger/dog-html-printer",
"type": "library",
"description": "HTML printer for Dog, a simple code documentation generator.",
"keywords": [
"Dog",
"PHP",
"Documentation",
"Generator",
"HTML",
"Printer",
"Output",
"Twig",
"PhpDocumentor",
"Reflection"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Söllinger",
"email": "christopher.soellinger@gmail.com",
"homepage": "https://github.com/CSoellinger"
}
],
"require": {
"php": "^7.4 || ^8",
"doctrine/inflector": "^2.0",
"klitsche/dog": "^0.4",
"league/commonmark": "^1.5",
"odan/twig-assets": "^3.2",
"scrivo/highlight.php": "dev-master",
"twig/markdown-extra": "^3.2",
"wyrihaximus/html-compress": "^4.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.78",
"ramsey/devtools": "^1.5",
"vimeo/psalm": "^4.4"
},
"config": {
"sort-packages": true
},
"extra": {
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"analyze:phploc": {
"script": "@dev:analyze:phploc"
},
"command-prefix": "dev",
"report:phploc": {
"script": "@dev:report:phploc"
}
}
},
"autoload": {
"psr-4": {
"CSoellinger\\DogHtmlPrinter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CSoellinger\\Test\\DogHtmlPrinter\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"dev:analyze:phploc": "php ./bin/phploc.phar --count-tests src tests",
"dev:report:phploc": "php ./bin/phploc.phar --count-tests --log-json phploc.json src tests"
}
}