forked from VincentChalnot/SidusDataGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 960 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
37
{
"name": "cleverage/datagrid-bundle",
"description": "Extension for sidus/filter-bundle to easily build a full datagrid based on yml configuration",
"keywords": [
"datagrid",
"sort"
],
"homepage": "https://github.com/VincentChalnot/SidusDataGridBundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vincent Chalnot",
"email": "[email protected]",
"homepage": "http://chalnot.fr",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"cleverage/filter-bundle": "^3.1",
"sidus/base-bundle": "^1.0",
"sensio/framework-extra-bundle": "^5.0",
"twig/twig": "^2.0"
},
"autoload": {
"psr-4": {
"Sidus\\DataGridBundle\\": "src/"
}
},
"require-dev": {
"johnkrovitch/test-pack": "^1.1"
},
"config": {
"bin-dir": "bin/"
}
}