-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
executable file
·51 lines (51 loc) · 1.5 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
{
"name": "kreyu/data-table-bundle",
"description": "Streamlines creation process of the data tables",
"type": "symfony-bundle",
"keywords": [
"symfony-ux"
],
"authors": [
{
"name": "Sebastian Wróblewski",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/translation": "^6.0|^7.0",
"symfony/form": "^6.0|^7.0",
"symfony/mime": "^6.0|^7.0",
"symfony/twig-bundle": "^6.0|^7.0",
"twig/extra-bundle": "^3.6",
"twig/intl-extra": "^3.6",
"symfony/validator": "^6.0|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.49",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.11",
"symfony/maker-bundle": "^1.48",
"symfony/security-core": "^6.2|^7.0",
"phpoffice/phpspreadsheet": "^1.28",
"doctrine/orm": "^2.15",
"doctrine/doctrine-bundle": "^2.9",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4",
"dg/bypass-finals": "dev-master",
"openspout/openspout": "^4.23",
"symfony/http-foundation": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Kreyu\\Bundle\\DataTableBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kreyu\\Bundle\\DataTableBundle\\Tests\\": "tests"
}
}
}