-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
75 lines (75 loc) · 2.16 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
{
"name": "webeweb/jquery-datatables-bundle",
"description": "Integrate jQuery Datatables with Symfony 2 and more",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"bundle",
"datatable",
"jquery",
"symfony",
"webeweb"
],
"authors": [
{
"name": "webeweb",
"homepage": "https://github.com/webeweb"
}
],
"homepage": "https://github.com/webeweb/jquery-datatables-bundle",
"support": {
"issues": "https://github.com/webeweb/jquery-datatables-bundle/issues"
},
"require": {
"php": "^7.1|^8.0",
"ext-json": "*",
"doctrine/orm": "^2.5.13",
"matomo/device-detector": "^3.0|^4.0|^5.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/asset": "^4.4|^5.0|^6.0",
"symfony/console": "^4.4|^5.0|^6.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/serializer": "^4.4|^5.0|^6.0",
"symfony/translation": "^4.4|^5.0|^6.0",
"twig/twig": "^2.10|^3.0",
"webeweb/bootstrap-bundle": "^4.11",
"webeweb/core-bundle": "^3.6",
"webeweb/core-library": "^8.70"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.8.1|^2.0",
"masterminds/html5": "^2.6",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^7.0|^9.0",
"symfony/browser-kit": "^4.4|^5.0|^6.0",
"symfony/monolog-bundle": "^3.0",
"symfony/security-bundle": "^4.4|^5.0|^6.0",
"symfony/twig-bundle": "^4.4|^5.0|^6.0"
},
"autoload": {
"psr-4": {
"WBW\\Bundle\\JQuery\\DataTablesBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"WBW\\Bundle\\JQuery\\QueryBuilderBundle\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}