-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2 KB
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
{
"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-uml": "^1.7",
"composer-runtime-api": "^2.0",
"psr/container": "^2.0",
"roave/better-reflection": "^6.0",
"symfony/config": "^7.4 || ^8.0",
"symfony/console": "^7.4 || ^8.0",
"symfony/finder": "^7.4 || ^8.0",
"symfony/options-resolver": "^7.4 || ^8.0",
"symfony/yaml": "^7.4 || ^8.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8"
},
"authors": [
{
"name": "Laurent Laville",
"homepage": "https://github.com/llaville",
"role": "Lead"
}
],
"bin": [
"bin/umlwriter"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"cweagans/composer-patches": true
}
},
"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": false
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-autoload-dump": [
"@composer bin captainhook-bin-plugin update",
"vendor/bin/captainhook install --configuration=captainhook.json --bootstrap=autoload.php --only-enabled"
]
}
}