forked from KilikFr/TableBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 950 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
36
{
"name": "kilik/table",
"description": "Symfony Ajax Datagrid Bundle for doctrine entities",
"keywords": ["symfony","jquery","table"],
"homepage": "https://github.com/KilikFr/TableBundle",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Michel Naud",
"email": "mitch@kilik.fr",
"role": "Author"
}
],
"require": {
"php": "^7.4||^8.3",
"ext-json": "*",
"twig/twig": "^1.0||^2.0||^3.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "~1.0||~2.0",
"symfony/form": "^4.0||^5.0||^6.0||^7.0"
},
"autoload": {
"psr-4": {
"Kilik\\TableBundle\\": "src"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0||^6.0||^7.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}