Skip to content

Commit 64e6f1b

Browse files
committed
Update dependencies
1 parent be55cf6 commit 64e6f1b

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## [Unreleased]
66
Nothing yet.
77

8-
## [0.5.0] - 2020-06-29
8+
## [0.5.0] - 2020-07-03
99
### Added
10-
- Support for server-side exportsv (#83)
10+
- Support for server-side exports (#83)
1111
- Support for per-column searches (#120)
1212
- ORM adapter supporting fetch joins (#121)
1313
- TwigStringColumn type for simple inline templating (#146)
1414

1515
### Changed
16-
- Fix contract dependency handling by upping Symfony requirement to 4.2+
16+
- Drop Symfony <4.4 compatibility
1717

1818
### Fixed
1919
- Use trans() for proper locale fallback when using CDN languages (#141)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Code Coverage](https://scrutinizer-ci.com/g/omines/datatables-bundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/omines/datatables-bundle/?branch=master)
99

1010
This bundle provides convenient integration of the popular [DataTables](https://datatables.net/) jQuery library
11-
for realtime Ajax tables in your [Symfony](https://symfony.com/) 4.2+ or 5.0+ application.
11+
for realtime Ajax tables in your [Symfony](https://symfony.com/) 4.4+ or 5.0+ application.
1212

1313
Unlike other bundles providing similar functionality we decoupled the implementation of the DataTables logic
1414
completely from the source of the data. Therefore it is possible to implement your own custom adapters for

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
},
2222
"require": {
2323
"php": "^7.2",
24-
"symfony/event-dispatcher": "^4.2|^5.0",
25-
"symfony/framework-bundle": "^4.2|^5.0",
26-
"symfony/property-access": "^4.2|^5.0",
27-
"symfony/translation": "^4.2|^5.0"
24+
"symfony/event-dispatcher": "^4.4|^5.0",
25+
"symfony/framework-bundle": "^4.4|^5.0",
26+
"symfony/property-access": "^4.4|^5.0",
27+
"symfony/translation": "^4.4|^5.0"
2828
},
2929
"require-dev": {
3030
"ext-curl": "*",
3131
"ext-json": "*",
3232
"ext-pdo_sqlite": "*",
3333
"ext-zip": "*",
3434
"doctrine/common": "^2.6",
35-
"doctrine/doctrine-bundle": "^2.0",
35+
"doctrine/doctrine-bundle": "^2.1",
3636
"doctrine/orm": "^2.6.3",
3737
"doctrine/persistence": "^1.3.4",
3838
"friendsofphp/php-cs-fixer": "^2.7",
@@ -41,15 +41,15 @@
4141
"phpoffice/phpspreadsheet": "^1.6",
4242
"phpunit/phpunit": "^8.5|^9.0",
4343
"ruflin/elastica": "^6.0",
44-
"symfony/browser-kit": "^4.2|^5.0",
45-
"symfony/css-selector": "^4.2|^5.0",
46-
"symfony/dom-crawler": "^4.2|^5.0",
47-
"symfony/intl": "^4.2|^5.0",
48-
"symfony/mime": "^4.2|^5.0",
49-
"symfony/phpunit-bridge": "^4.2|^5.0",
50-
"symfony/twig-bundle": "^4.2|^5.0",
51-
"symfony/var-dumper": "^4.2|^5.0",
52-
"symfony/yaml": "^4.2|^5.0"
44+
"symfony/browser-kit": "^4.4|^5.0",
45+
"symfony/css-selector": "^4.4|^5.0",
46+
"symfony/dom-crawler": "^4.4|^5.0",
47+
"symfony/intl": "^4.4|^5.0",
48+
"symfony/mime": "^4.4|^5.0",
49+
"symfony/phpunit-bridge": "^4.4|^5.0",
50+
"symfony/twig-bundle": "^4.4|^5.0",
51+
"symfony/var-dumper": "^4.4|^5.0",
52+
"symfony/yaml": "^4.4|^5.0"
5353
},
5454
"suggest": {
5555
"doctrine/doctrine-bundle": "For integrated access to Doctrine object managers",

0 commit comments

Comments
 (0)