Skip to content

Commit 0213467

Browse files
authored
Merge pull request #1824 from XWB/bump-php-version
Drop support for old PHP versions
2 parents 6077efb + a062f00 commit 0213467

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,10 @@ jobs:
3737
strategy:
3838
matrix:
3939
include:
40-
- php: '7.2'
40+
- php: '7.4'
4141
elasticsearch: '7.0.0'
4242
dependencies: 'lowest'
4343
symfony_require: '4.4.*'
44-
- php: '7.3'
45-
elasticsearch: '7.4.0'
46-
dependencies: 'highest'
47-
symfony_require: '5.3.*'
4844
- php: '7.4'
4945
elasticsearch: '7.9.0'
5046
dependencies: 'highest'

CHANGELOG-6.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ in 6.0 versions.
66

77
### 6.0.0-RC1 (2021-xx-xx)
88

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

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.2 |
38+
| [6.0] (master) | ^7.1 | 7.\* | ^4.4\|^5.1 | >=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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131
],
3232
"require": {
33-
"php": "^7.2 || ^8.0",
33+
"php": "^7.4 || ^8.0",
3434
"pagerfanta/pagerfanta": "^2.4 || ^3.0",
3535
"psr/log": "^1.0",
3636
"ruflin/elastica": "^7.1",

0 commit comments

Comments
 (0)