-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
89 lines (89 loc) · 2.56 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
{
"name": "phuml/phuml",
"description": "phUML is a fully automatic UML class diagram generator for PHP code",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"uml"
],
"authors": [
{
"name": "Luis Montealegre",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/MontealegreLuis/phuml",
"support": {
"issues": "https://github.com/MontealegreLuis/phuml/issues",
"docs": "https://montealegreluis.com/phuml/"
},
"require": {
"php": "^8.1",
"ext-tokenizer": "*",
"league/pipeline": "~1.0.0",
"nikic/php-parser": "~4.13.2",
"phpdocumentor/reflection-docblock": "~5.3.0",
"phpdocumentor/type-resolver": "~1.6.1",
"symfony/console": "~6.0.7",
"symfony/finder": "~6.0.3",
"symfony/process": "~6.0.7",
"symplify/smart-file-system": "~10.2.2",
"twig/twig": "~3.3.10",
"webmozart/assert": "~1.10.0"
},
"require-dev": {
"ext-imagick": "*",
"ergebnis/composer-normalize": "~2.25.2",
"friendsofphp/php-cs-fixer": "~3.8.0",
"infection/infection": "~0.26.8",
"lupka/phpunit-compare-images": "~1.0.0",
"maglnet/composer-require-checker": "~4.0.0",
"phpro/grumphp": "~1.11.0",
"phpspec/prophecy-phpunit": "~2.0.1",
"phpstan/extension-installer": "~1.1.0",
"phpstan/phpstan": "~1.5.7",
"phpstan/phpstan-strict-rules": "~1.1.0",
"phpstan/phpstan-webmozart-assert": "~1.1.2",
"phpunit/phpunit": "~9.5.20",
"pyrech/composer-changelogs": "~1.8.1",
"rector/rector": "~0.12.21"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"PhUml\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhUml\\": [
"tests/src",
"tests/integration",
"tests/unit"
]
}
},
"bin": [
"bin/phuml"
],
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pyrech/composer-changelogs": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.1.1"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
}
}