Skip to content

Commit 1f98186

Browse files
authored
Merge pull request #1826 from XWB/symfony-increase
Drop support for old Symfony versions
2 parents 0213467 + da575cd commit 1f98186

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

CHANGELOG-6.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ in 6.0 versions.
77
### 6.0.0-RC1 (2021-xx-xx)
88

99
* Dropped PHP 7.2 & 7.3 support.
10+
* Dropped Symfony 5.1 and 5.2 support.
1011
* **[BC break]** Changed signature of `FOS\ElasticaBundle\Configuration\Source\SourceInterface::getConfiguration()`.
1112
* **[BC break]** Changed signature of methods `resetAllIndexes` and `resetIndex` from interface `FOS\ElasticaBundle\Index\ResetterInterface` and its implementations.
1213

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following table shows the compatibilities of different versions of the bundl
3535

3636
| FOSElasticaBundle | Elastica | Elasticsearch | Symfony | PHP |
3737
| --------------------------------------------------------------------------------------- | ---------| ------------- | ---------- | ----- |
38-
| [6.0] (master) | ^7.1 | 7.\* | ^4.4\|^5.1 | >=7.4 |
38+
| [6.0] (master) | ^7.1 | 7.\* | ^4.4\|^5.3 | >=7.4 |
3939
| [5.1] (5.1.x) | ^5.3\|^6 | 5.\*\|6.\* | ^3.4\|^4 | >=7.1 |
4040
| [5.0] (unmaintained) | ^5.2\|^6 | 5.\*\|6.\* | ^3.2\|^4 | >=5.6 |
4141
| [4.x] (unmaintained) | 3.2.\* | 2.\* | ^2.8\|^3.2 | >=5.5 |

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"pagerfanta/pagerfanta": "^2.4 || ^3.0",
3535
"psr/log": "^1.0",
3636
"ruflin/elastica": "^7.1",
37-
"symfony/console": "^4.4 || ^5.1",
38-
"symfony/dependency-injection": "^4.4 || ^5.1",
39-
"symfony/framework-bundle": "^4.4 || ^5.1",
40-
"symfony/property-access": "^4.4 || ^5.1"
37+
"symfony/console": "^4.4 || ^5.3",
38+
"symfony/dependency-injection": "^4.4 || ^5.3",
39+
"symfony/framework-bundle": "^4.4 || ^5.3",
40+
"symfony/property-access": "^4.4 || ^5.3"
4141
},
4242
"require-dev": {
4343
"doctrine/doctrine-bundle": "^2.1.1",
@@ -55,12 +55,12 @@
5555
"pagerfanta/doctrine-phpcr-odm-adapter": "^2.4 || ^3.0",
5656
"phpspec/prophecy-phpunit": "^1.1 || ^2.0",
5757
"phpunit/phpunit": "^8.5 || ^9.3",
58-
"symfony/expression-language": "^4.4 || ^5.1",
59-
"symfony/messenger": "^4.4 || ^5.1",
60-
"symfony/serializer": "^4.4 || ^5.1",
61-
"symfony/twig-bundle": "^4.4 || ^5.1",
62-
"symfony/web-profiler-bundle": "^4.4 || ^5.1",
63-
"symfony/yaml": "^4.4 || ^5.1"
58+
"symfony/expression-language": "^4.4 || ^5.3",
59+
"symfony/messenger": "^4.4 || ^5.3",
60+
"symfony/serializer": "^4.4 || ^5.3",
61+
"symfony/twig-bundle": "^4.4 || ^5.3",
62+
"symfony/web-profiler-bundle": "^4.4 || ^5.3",
63+
"symfony/yaml": "^4.4 || ^5.3"
6464
},
6565
"suggest": {
6666
"enqueue/elastica-bundle": "For populating Elasticsearch indexes asynchronously and using significanly less resources. Uses Enqueue.",

0 commit comments

Comments
 (0)