Skip to content

Commit a841471

Browse files
committed
Drop support for PHP <8.3
1 parent 5d2ab01 commit a841471

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,9 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
php:
34-
- "8.1"
35-
- "8.2"
3634
- "8.3"
3735
- "8.4"
38-
include:
39-
- php: "8.5"
40-
composer-options: "--ignore-platform-reqs"
36+
- "8.5"
4137

4238
env:
4339
extensions: ctype, dom, grpc, json, mbstring, openssl, xml, zip, zlib

.github/workflows/tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,12 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
php:
34-
- "8.1"
35-
- "8.2"
3634
- "8.3"
3735
- "8.4"
36+
- "8.5"
3837
dependencies:
3938
- "lowest"
4039
- "highest"
41-
include:
42-
- php: "8.5"
43-
composer-options: "--ignore-platform-reqs"
44-
dependencies: "highest"
4540

4641
env:
4742
extensions: ctype, dom, grpc, json, mbstring, openssl, xml, zip, zlib

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ If it saves you or your team time, please consider [sponsoring its development](
77

88
### Breaking changes
99

10+
* The SDK supports only actively supported PHP versions. As a result, support for PHP < 8.3 has been dropped;
11+
supported versions are 8.3, 8.4, and 8.5.
1012
* [Firebase Dynamic Links was shut down on August 25th, 2025](https://firebase.google.com/support/dynamic-links-faq)
1113
and has been removed from the SDK.
1214
* Deprecated classes, methods and class constants have been removed.

UPGRADE-8.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ from 7.x to 8.0.
77

88
## Notable changes
99

10+
* The SDK supports only actively supported PHP versions. As a result, support for PHP < 8.3 has been dropped;
11+
supported versions are 8.3, 8.4, and 8.5.
1012
* [Firebase Dynamic Links was shut down on August 25th, 2025](https://firebase.google.com/support/dynamic-links-faq)
1113
and has been removed from the SDK.
1214

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"require": {
26-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
26+
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
2727
"ext-ctype": "*",
2828
"ext-filter": "*",
2929
"ext-json": "*",

0 commit comments

Comments
 (0)