-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.2 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
{
"name": "jpustkuchen/tableclass-bundle",
"type": "symfony-bundle",
"description": "Symfony TableClass bundle to represent HTML table structure in objects.",
"keywords": ["symfony","datatables", "bundle"],
"license": "MIT",
"authors": [
{
"name": "Julian Pustkuchen",
"email": "[email protected]",
"homepage": "https://Julian.Pustkuchen.com/"
}
],
"support": {
"issues": "https://github.com/jpustkuchen/TableClassBundle/issues"
},
"require": {
"php": ">=7.3",
"symfony/framework-bundle": "^4.4|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.7",
"phpunit/phpunit": "^8.5|^9.0",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/phpunit-bridge": "^4.4|^5.0",
"symfony/twig-bundle": "^4.4|^5.0",
"symfony/var-dumper": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0"
},
"suggest": {
"symfony/twig-bundle": "To use default Twig based rendering and TwigColumn"
},
"autoload": {
"psr-4": { "JPustkuchen\\TableClassBundle\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/"}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}