-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
90 lines (90 loc) · 3.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "omines/datatables-bundle",
"type": "symfony-bundle",
"description": "Symfony DataTables Bundle with native Doctrine ORM, Elastica and MongoDB support",
"keywords": ["symfony","jquery","datatable", "datatables", "bundle", "doctrine", "orm", "elastica", "mongodb"],
"license": "MIT",
"authors": [
{
"name": "Robbert Beesems",
"email": "[email protected]",
"homepage": "https://www.omines.nl/"
},
{
"name": "Niels Keurentjes",
"email": "[email protected]",
"homepage": "https://www.omines.nl/"
}
],
"support": {
"issues": "https://github.com/omines/datatables-bundle/issues"
},
"require": {
"php": ">=8.1",
"symfony/event-dispatcher": "^6.3|^7.0",
"symfony/framework-bundle": "^6.3|^7.0",
"symfony/options-resolver": "^6.3|^7.0",
"symfony/property-access": "^6.3|^7.0",
"symfony/translation": "^6.3|^7.0"
},
"require-dev": {
"ext-curl": "*",
"ext-json": "*",
"ext-mongodb": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"doctrine/common": "^3.4.3",
"doctrine/doctrine-bundle": "^2.12.0",
"doctrine/orm": "^2.19.3|^3.1.0",
"doctrine/persistence": "^3.3.2",
"friendsofphp/php-cs-fixer": "^3.52.1",
"mongodb/mongodb": "^1.17.1",
"ocramius/package-versions": "^2.8",
"openspout/openspout": "^4.23",
"phpoffice/phpspreadsheet": "^1.29.0|^2.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.65",
"phpstan/phpstan-doctrine": "^1.3.64",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-symfony": "^1.3.9",
"phpunit/phpunit": "^10.5.10|^11.0.8",
"ruflin/elastica": "^6.2|^7.3.2",
"symfony/browser-kit": "^6.3|^7.0.3",
"symfony/css-selector": "^6.3|^7.0.3",
"symfony/doctrine-bridge": "^6.3|^7.0.5",
"symfony/dom-crawler": "^6.3|^7.0.4",
"symfony/intl": "^6.3|^7.0.3",
"symfony/mime": "^6.3|^7.0.3",
"symfony/phpunit-bridge": "^6.3|^7.0.4",
"symfony/twig-bundle": "^6.3|^7.0.4",
"symfony/var-dumper": "^6.3|^7.0.4",
"symfony/yaml": "^6.3|^7.0.3"
},
"suggest": {
"doctrine/doctrine-bundle": "For integrated access to Doctrine object managers",
"doctrine/orm": "For full automated integration with Doctrine entities",
"mongodb/mongodb": "For integration with MongoDB collections",
"ruflin/elastica": "For integration with Elasticsearch indexes",
"symfony/twig-bundle": "To use default Twig based rendering and TwigColumn",
"phpoffice/phpspreadsheet": "To export the data from DataTables to Excel",
"openspout/openspout": "To use the OpenSpout Excel exporter"
},
"autoload": {
"psr-4": { "Omines\\DataTablesBundle\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/"}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.9-dev"
}
}
}