Skip to content

Commit 8a66133

Browse files
committed
Reshuffle dependencies and up min Symfony to 4.2
See discussion at 6c72c97
1 parent 4cc0487 commit 8a66133

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ All notable changes to `omines\datatables-bundle` will be documented in this fil
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
6-
Nothing yet.
6+
### Changed
7+
- Fix contract dependency handling by upping Symfony requirement to 4.2+
78

89
## [0.4.2] - 2020-04-08
910
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![SymfonyInsight](https://img.shields.io/symfony/i/grade/05d79ba2-cba4-4201-a17a-2868c51f9c6c)](https://insight.symfony.com/projects/05d79ba2-cba4-4201-a17a-2868c51f9c6c)
1010

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

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

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
},
2222
"require": {
2323
"php": "^7.2",
24-
"symfony/contracts": "^1.1|^2.0",
25-
"symfony/framework-bundle": "^4.1|^5.0",
26-
"symfony/property-access": "^4.1|^5.0",
27-
"symfony/translation": "^4.1|^5.0"
24+
"symfony/event-dispatcher": "^4.1|^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"
2828
},
2929
"require-dev": {
3030
"ext-curl": "*",
@@ -40,14 +40,14 @@
4040
"ocramius/package-versions": "1.4.*",
4141
"phpunit/phpunit": "^8.5|^9.0",
4242
"ruflin/elastica": "^6.0|^7.0",
43-
"symfony/browser-kit": "^4.1|^5.0",
44-
"symfony/css-selector": "^4.1|^5.0",
45-
"symfony/dom-crawler": "^4.1|^5.0",
46-
"symfony/intl": "^4.1|^5.0",
47-
"symfony/phpunit-bridge": "^4.1|^5.0",
48-
"symfony/twig-bundle": "^4.1|^5.0",
49-
"symfony/var-dumper": "^4.1|^5.0",
50-
"symfony/yaml": "^4.1|^5.0"
43+
"symfony/browser-kit": "^4.2|^5.0",
44+
"symfony/css-selector": "^4.2|^5.0",
45+
"symfony/dom-crawler": "^4.2|^5.0",
46+
"symfony/intl": "^4.2|^5.0",
47+
"symfony/phpunit-bridge": "^4.2|^5.0",
48+
"symfony/twig-bundle": "^4.2|^5.0",
49+
"symfony/var-dumper": "^4.2|^5.0",
50+
"symfony/yaml": "^4.2|^5.0"
5151
},
5252
"suggest": {
5353
"doctrine/doctrine-bundle": "For integrated access to Doctrine object managers",

0 commit comments

Comments
 (0)