Skip to content

Commit 5ab7c66

Browse files
committed
Enable Blackfire support for PHP 8.4 and 8.5
Blackfire now supports PHP 8.4 and 8.5 according to their documentation. Remove the version check that skipped blackfire tests and remove the outdated note from the README.
1 parent cb5ee85 commit 5ab7c66

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ This list can be outdated, you can verify by executing : `docker run --rm -it th
166166
**Note**:
167167

168168
- *ev* is not available in PHP 8.1+
169-
- *rdkafka* and *snmp* are not available in all `ARM64` images (build time is too long : it's possible to install manually as required)
170-
- *blackfire* not supported yet in PHP8.4 : https://support.blackfire.platform.sh/hc/en-us/articles/4740726712082-PHP-versions-Platforms-support
169+
- *rdkafka* and *snmp* are not available in all `ARM64` images (build time is too long : it's possible to install manually as required)
171170

172171
### Enabling/disabling extensions in the fat image
173172

extensions/8.4/blackfire

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../core/blackfire

extensions/8.5/blackfire

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../core/blackfire

tests-suite/php-blackfire.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
#!/usr/bin/env bash
22
. ./config
33

4-
if [[ "${PHP_VERSION}" == "8.4" ]] || [[ "${PHP_VERSION}" == "8.5" ]]; then
5-
echo "-- PHP${PHP_VERSION} not support yet blackfire : https://support.blackfire.platform.sh/hc/en-us/articles/4740726712082-PHP-versions-Platforms-support"
6-
return 0
7-
fi
84
test_enable() {
95
# Check that blackfire can be enabled
106
docker run ${RUN_OPTIONS} --rm -e PHP_EXTENSION_BLACKFIRE=1 "${REPO}:${TAG_PREFIX}${PHP_VERSION}-${BRANCH}-${BRANCH_VARIANT}" \

utils/README.blueprint.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ This list can be outdated, you can verify by executing : `docker run --rm -it th
9999
**Note**:
100100

101101
- *ev* is not available in PHP 8.1+
102-
- *rdkafka* and *snmp* are not available in all `ARM64` images (build time is too long : it's possible to install manually as required)
103-
- *blackfire* not supported yet in PHP8.4+ : https://support.blackfire.platform.sh/hc/en-us/articles/4740726712082-PHP-versions-Platforms-support
102+
- *rdkafka* and *snmp* are not available in all `ARM64` images (build time is too long : it's possible to install manually as required)
104103

105104
### Enabling/disabling extensions in the fat image
106105

0 commit comments

Comments
 (0)