forked from omines/datatables-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 2.34 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
{
"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://omines.nl/"
},
{
"name": "Niels Keurentjes",
"email": "[email protected]",
"homepage": "https://omines.nl/"
}
],
"support": {
"issues": "https://github.com/omines/datatables-bundle/issues"
},
"require": {
"php": "^7.2",
"symfony/framework-bundle": "^4.1|^5.0",
"symfony/property-access": "^4.1|^5.0",
"symfony/translation": "^4.1|^5.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"doctrine/common": "^2.6",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5",
"doctrine/persistence": "^1.3",
"friendsofphp/php-cs-fixer": "^2.7",
"mongodb/mongodb": "^1.2",
"phpunit/phpunit": "^7.5",
"ruflin/elastica": "^6.0|^7.0",
"symfony/browser-kit": "^4.1|^5.0",
"symfony/css-selector": "^4.1|^5.0",
"symfony/dom-crawler": "^4.1|^5.0",
"symfony/phpunit-bridge": "^4.1|^5.0",
"symfony/templating": "^4.1|^5.0",
"symfony/twig-bundle": "^4.1|^5.0",
"symfony/var-dumper": "^4.1|^5.0",
"symfony/yaml": "^4.1|^5.0"
},
"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"
},
"autoload": {
"psr-4": { "Omines\\DataTablesBundle\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/"}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}