-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
62 lines (62 loc) · 1.69 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
{
"name": "jawira/doctrine-diagram-bundle",
"description": "\ud83d\udcd0 Symfony Bundle to generate database diagrams",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony-bundle",
"diagram",
"doctrine",
"database"
],
"authors": [
{
"name": "Jawira Portugal",
"homepage": "https://jawira.com"
}
],
"homepage": "https://github.com/jawira/doctrine-diagram-bundle",
"support": {
"issues": "https://github.com/jawira/doctrine-diagram-bundle/issues",
"docs": "https://jawira.github.io/doctrine-diagram-bundle"
},
"require": {
"php": "^8.1",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/orm": "^2.9 || ^3.0",
"jawira/db-draw": "^1.6",
"jawira/plantuml-client": "^1.0",
"jawira/plantuml-to-image": "^1.1",
"symfony/config": "^6.0 || ^7.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/filesystem": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.54",
"jawira/plantuml": "^1.2024.4",
"jawira/skeleton": "^2.22",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-symfony": "^1.3.12"
},
"suggest": {
"jawira/plantuml": "Install PlantUML executable/jar with Composer."
},
"autoload": {
"psr-4": {
"Jawira\\DoctrineDiagramBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"platform-check": true,
"preferred-install": "dist",
"sort-packages": true
}
}