-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.63 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
52
53
54
55
56
57
58
{
"name": "darkanakin41/table-bundle",
"type": "symfony-bundle",
"description": "Pierre LEJEUNE TableBundle",
"keywords": [
"symfony",
"doctrine",
"table",
"bundle"
],
"homepage": "https://github.com/darkanakin41/table-bundle",
"license": "MIT",
"authors": [
{
"name": "Pierre LEJEUNE",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"knplabs/knp-paginator-bundle": "*",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/orm-pack": "*",
"symfony/serializer-pack": "*",
"symfony/translation": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/yaml": "*"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.3",
"friendsofphp/php-cs-fixer": "^2.14",
"friendsoftwig/twigcs": "^3.2",
"phpunit/phpunit": "^8.4",
"sensiolabs/security-checker": "^6.0",
"symfony/console": "^4.0",
"symfony/test-pack": "*"
},
"suggest" :{
"phpoffice/phpspreadsheet": "If you want the export functionnality, that's the way to go ... "
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Darkanakin41\\TableBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Darkanakin41\\TableBundle\\Tests\\": "tests/",
"Darkanakin41\\CoreBundle\\Tests\\": "vendor/darkanakin41/core-bundle/tests/",
"AppTestBundle\\": "tests/Fixtures/AppTestBundle/"
}
}
}