Skip to content

Commit b202995

Browse files
authored
Merge pull request #301 from Chris53897/feature/drop-support-for-symfony-4
Drop support of symfony 4
2 parents fabef64 + d2cc345 commit b202995

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
MEILI_MASTER_KEY: masterKey
2525
MEILI_NO_ANALYTICS: true
2626
strategy:
27+
# only TEMP
28+
fail-fast: false
2729
matrix:
2830
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
2931
include:
30-
- php-version: '7.4'
31-
sf-version: '4.4.*'
3232
- php-version: '7.4'
3333
sf-version: '5.4.*'
3434
- php-version: '8.0'
@@ -59,7 +59,7 @@ jobs:
5959
- name: Install dependencies
6060
env:
6161
SYMFONY_REQUIRE: ${{ matrix.sf-version }}
62-
run: composer install --prefer-dist --no-progress --quiet
62+
run: composer install --prefer-dist --no-progress
6363
- name: "Remove doctrine/annotations"
6464
if: matrix.php-version != '7.4'
6565
run: |

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ Say goodbye to server deployment and manual updates with [Meilisearch Cloud](htt
4949
## 📝 Requirements
5050

5151
* **Require** PHP 7.4 and later.
52-
* **Compatible** with Symfony 4.0 and later.
52+
* **Compatible** with Symfony 5.4 and later.
5353
* **Support** Doctrine ORM.
5454

55+
For support of older versions, see older versions of this bundle.
56+
5557
## 🤖 Compatibility with Meilisearch
5658

5759
This package guarantees compatibility with [version v1.x of Meilisearch](https://github.com/meilisearch/meilisearch/releases/latest), but some features may not be present. Please check the [issues](https://github.com/meilisearch/meilisearch-symfony/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22+label%3Aenhancement) for more info.

bors.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
status = [
2-
'integration-tests (PHP 7.4) (Symfony 4.4.*)',
32
'integration-tests (PHP 7.4) (Symfony 5.4.*)',
43
'integration-tests (PHP 8.0) (Symfony 6.0.*)',
54
'integration-tests (PHP 8.1) (Symfony 6.1.*)',

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"ext-json": "*",
2323
"doctrine/doctrine-bundle": "^2.4",
2424
"meilisearch/meilisearch-php": "^1.0.0",
25-
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0 || ^7.0",
25+
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
2626
"symfony/polyfill-php80": "^1.27",
27-
"symfony/property-access": "^4.4 || ^5.0 || ^6.0 || ^7.0",
28-
"symfony/serializer": "^4.4 || ^5.0 || ^6.0 || ^7.0"
27+
"symfony/property-access": "^5.4 || ^6.0 || ^7.0",
28+
"symfony/serializer": "^5.4 || ^6.0 || ^7.0"
2929
},
3030
"require-dev": {
3131
"doctrine/annotations": "^2.0",
@@ -40,10 +40,10 @@
4040
"phpstan/phpstan-phpunit": "^1.3.10",
4141
"phpstan/phpstan-symfony": "^1.2.23",
4242
"phpunit/php-code-coverage": "^9.2.26",
43-
"symfony/doctrine-bridge": "^4.4 || ^5.0 || ^6.0 || ^7.0",
44-
"symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0",
45-
"symfony/phpunit-bridge": "^4.4 || ^5.0 || ^6.0 || ^7.0",
46-
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0"
43+
"symfony/doctrine-bridge": "^5.4 || ^6.0 || ^7.0",
44+
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
45+
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
46+
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)