From 1384f4b9da80f29765ca33ae2d19f73b10bedd6c Mon Sep 17 00:00:00 2001 From: Leopold Jacquot Date: Mon, 27 Nov 2023 23:26:50 +0100 Subject: [PATCH] chore: add php 8.3 --- .github/workflows/tests.yml | 2 +- README.md | 15 ++++++++------- composer.json | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 19f32bc..621de5c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,8 +12,8 @@ jobs: strategy: matrix: php: - - "8.1" - "8.2" + - "8.3" laravel: - "9" - "10" diff --git a/README.md b/README.md index 7e7f09b..08f58ad 100644 --- a/README.md +++ b/README.md @@ -122,13 +122,14 @@ $anotherAppAuth = Firebase::project('another-app')->auth(); Earlier versions will receive security fixes as long as their **lowest** SDK requirement receives security fixes. You can find the currently supported versions and support options in the [SDK's README](https://github.com/kreait/firebase-php). -| Version | Initial Release | Supported SDK Versions | Supported Laravel Versions | Status | -|---------|-----------------|------------------------|----------------------------|-------------| -| `5.x` | 13 Jan 2023 | `^7.0` | `^9.0`, `^10.0` | Active | -| `4.x` | 09 Jan 2022 | `^6.0` | `^8.0` | End of life | -| `3.x` | 01 Nov 2020 | `^5.24` | `^6.0, ^7.0, ^8.0` | End of life | -| `2.x` | 01 Apr 2020 | `^5.0` | `^5.8, ^6.0, ^7.0, ^8.0` | End of life | -| `1.x` | 17 Aug 2019 | `^4.40.1` | `^5.8, ^6.0, ^7.0` | End of life | +| Version | Initial Release | Supported SDK Versions | Supported Laravel Versions | Status | +|---------|-----------------|------------------------|----------------------------|--------------| +| `6.x` | X Dec 2023 | `^7.0` | `^10.0` | Active | +| `5.x` | 13 Jan 2023 | `^7.0` | `6 u^9.0`, `^10.0` | End of life | +| `4.x` | 09 Jan 2022 | `^6.0` | `^8.0` | End of life | +| `3.x` | 01 Nov 2020 | `^5.24` | `^6.0, ^7.0, ^8.0` | End of life | +| `2.x` | 01 Apr 2020 | `^5.0` | `^5.8, ^6.0, ^7.0, ^8.0` | End of life | +| `1.x` | 17 Aug 2019 | `^4.40.1` | `^5.8, ^6.0, ^7.0` | End of life | ## License diff --git a/composer.json b/composer.json index 0410df4..e3fca10 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.2.0 || ~8.3.0", "kreait/firebase-php": "^7.0", "illuminate/contracts": "^9.0 || ^10.0", "illuminate/support": "^9.0 || ^10.0",