-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
35 lines (35 loc) · 972 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
29
30
31
32
33
34
35
{
"name": "yokai/many-to-many-matrix-bundle",
"description": "Render a Doctrine ManyToMany relation has matrix form type",
"keywords": ["matrix", "form", "doctrine", "many-to-many", "symfony"],
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Yann Eugoné",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.0",
"symfony/dependency-injection": "^5.0|^6.0",
"symfony/form": "^5.0|^6.0",
"symfony/framework-bundle": "^5.0|^6.0",
"twig/twig": "^2.0|^3.0"
},
"require-dev": {},
"autoload": {
"psr-4": {
"Yokai\\ManyToManyMatrixBundle\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-main": "2.x-dev",
"dev-1.x": "1.0-dev"
}
}
}