-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathcomposer.json
95 lines (95 loc) · 3.4 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
91
92
93
94
95
{
"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.4|^7.1",
"symfony/framework-bundle": "^6.4|^7.1",
"symfony/options-resolver": "^6.4|^7.1",
"symfony/property-access": "^6.4|^7.1",
"symfony/translation": "^6.4|^7.1"
},
"require-dev": {
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mongodb": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"doctrine/common": "^3.4.5",
"doctrine/doctrine-bundle": "^2.13.1",
"doctrine/orm": "^2.19.3|^3.3.0",
"doctrine/persistence": "^3.4.0",
"friendsofphp/php-cs-fixer": "^3.65.0",
"mongodb/mongodb": "^1.20.0",
"ocramius/package-versions": "^2.9",
"openspout/openspout": "^4.23",
"phpoffice/phpspreadsheet": "^2.3.3|^3.5",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.0.3",
"phpstan/phpstan-doctrine": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.1",
"phpstan/phpstan-symfony": "^2.0.0",
"phpunit/phpunit": "^10.5.38|^11.4.4",
"ruflin/elastica": "^6.2|^7.3.2",
"symfony/browser-kit": "^6.4.13|^7.1",
"symfony/css-selector": "^6.4.13|^7.1",
"symfony/doctrine-bridge": "^6.4.13|^7.1",
"symfony/dom-crawler": "^6.4.13|^7.1",
"symfony/intl": "^6.4.13|^7.1",
"symfony/mime": "^6.4.13|^7.1",
"symfony/phpunit-bridge": "^7.2",
"symfony/polyfill-mbstring":"^1.31.0",
"symfony/twig-bundle": "^6.4|^7.1",
"symfony/var-dumper": "^6.4.13|^7.1",
"symfony/yaml": "^6.4.13|^7.1"
},
"conflict": {
"doctrine/orm": "^3.0 <3.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"
}
}
}