-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
28 lines (28 loc) · 842 Bytes
/
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
{
"name": "tbn/doctrinerelationvisualizer-bundle",
"description": "Visualize the entity relation of doctrine entities",
"require-dev": {
"symfony/class-loader": "2.3.*",
"nyholm/symfony-bundle-test": "^3.0",
"phpunit/phpunit": "^10.3"
},
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^5.4|^6.3|^7.1",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^3.0",
"doctrine/annotations": "^2.0",
"symfony/serializer": "^5.4|^6.3|^7.1",
"symfony/property-access": "^5.4|^6.3|^7.1"
},
"autoload": {
"psr-4": {
"Tbn\\DoctrineRelationVisualizerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tbn\\DoctrineRelationVisualizerBundle\\Tests\\": "tests/"
}
}
}