-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
84 lines (84 loc) · 2.76 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
{
"name": "bartlett/umlwriter",
"description": "Create UML class diagrams from your PHP source.",
"keywords": ["UML", "Graphviz", "PlantUML"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/llaville/umlwriter",
"support": {
"source": "https://github.com/llaville/umlwriter",
"issues": "https://github.com/llaville/umlwriter/issues"
},
"require": {
"php": "^8.2",
"bartlett/graph-plantuml-generator": "^1.6",
"bartlett/graph-uml": "^1.6",
"composer-runtime-api": "^2.0",
"cweagans/composer-patches": "^1.7",
"graphp/graph": "1.x-dev#0adb04d as 1.0.0",
"graphp/graphviz": "1.x-dev#686f747 as 1.0.0",
"psr/container": "^2.0",
"roave/better-reflection": "^6.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/finder": "^7.0",
"symfony/options-resolver": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"jawira/plantuml": "^1.2024",
"bamarni/composer-bin-plugin": "^1.8"
},
"authors": [
{
"name": "Laurent Laville",
"homepage": "https://github.com/llaville",
"role": "Lead"
}
],
"bin": [
"bin/umlwriter"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"cweagans/composer-patches": true
},
"preferred-install": {
"graphp/graphviz": "source",
"*": "dist"
}
},
"autoload": {
"psr-4": {
"Bartlett\\UmlWriter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bartlett\\UmlWriter\\Tests\\": "tests/"
}
},
"extra": {
"enable-patching": true,
"bamarni-bin": {
"bin-links": true,
"target-directory": "vendor-bin",
"forward-command": true
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"code:check": "vendor/bin/phpstan analyse --configuration .github/linters/phpstan.neon.dist --ansi --verbose",
"code:lint": "vendor/bin/phplint --configuration .github/linters/.phplint.yml --verbose --progress=indicator --ansi",
"style:check": "vendor/bin/phpcs --standard=.github/linters/.phpcs.xml.dist --warning-severity=0 --colors",
"tests:unit": "vendor/bin/phpunit --configuration phpunit.xml.dist"
},
"scripts-descriptions" : {
"code:check": "Run PHPStan code analysis on project source code",
"code:lint": "Run PHPLint on project source code",
"style:check": "Run PHP CodeSniffer on project source code",
"tests:unit": "Run unit tests on project source code"
}
}