Skip to content

Commit 8905a44

Browse files
chore(deps): update php docker tag to v8.3 (the-benchmarker#6989)
* chore(deps): update php docker tag to v8.3 * update version in results * use php8.3 * use php8.2 for hamlet/antidot * typo * restore php8.3 for hamlet * remove mezzio tooling * add apc extension for sunrise --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Marwan <[email protected]>
1 parent aa0339e commit 8905a44

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

.rtx.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[tools]
22
ruby = "3.2"
3-
php = "8.2"
3+
php = "8.3"

php/Dockerfile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
FROM php:8.2-fpm
1+
{{#language.version}}
2+
FROM php:{{{.}}}-fpm
3+
{{/language.version}}
4+
{{^language.version}}
5+
FROM php:8.3-fpm
6+
{{/language.version}}
27

38
RUN apt-get -qq update
49
RUN apt-get -qy install libzip-dev {{#deps}} {{{.}}} {{/deps}}
@@ -26,10 +31,9 @@ RUN docker-php-ext-install zip opcache
2631
{{/extensions}}
2732

2833
ENV EVENT_EXT_FILE /usr/local/etc/php/conf.d/docker-php-ext-event.ini
29-
RUN if [[ -f "${EVENT_EXT_FILE}" ]] ; then \
34+
RUN if [ -f "${EVENT_EXT_FILE}" ] ; then \
3035
rm -fr /usr/local/etc/php/conf.d/docker-php-ext-sockets.ini ; \
31-
sed -e '1i extension=sockets' /usr/local/etc/php/conf.d/docker-php-ext-event.ini > /tmp/file ; \
32-
mv /tmp/file /usr/local/etc/php/conf.d/docker-php-ext-event.ini ; fi
36+
sed -i -e '1i extension=sockets.so' /usr/local/etc/php/conf.d/docker-php-ext-event.ini ; fi
3337

3438
{{#before_build}}
3539
RUN {{{.}}}

php/antidot/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language:
2+
version: 8.2
23
engines:
34
reactphp:
45
command: bin/console serve

php/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language:
2-
version: 8.2
2+
version: 8.3
33

44
files:
55
- "**/*.php"

php/mezzio/composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"laminas/laminas-stdlib": "@stable",
1414
"mezzio/mezzio": "~3.18.0",
1515
"mezzio/mezzio-fastroute": "@stable",
16-
"mezzio/mezzio-helpers": "@stable",
17-
"mezzio/mezzio-tooling": "@stable"
16+
"mezzio/mezzio-helpers": "@stable"
1817
},
1918
"autoload": {
2019
"psr-4": {

php/mezzio/config/config.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
];
1515

1616
$aggregator = new ConfigAggregator([
17-
\Mezzio\Tooling\ConfigProvider::class,
1817
\Mezzio\Helper\ConfigProvider::class,
1918
\Mezzio\Router\FastRouteRouter\ConfigProvider::class,
2019
\Laminas\HttpHandlerRunner\ConfigProvider::class,

php/sunrise-router-annotations/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ framework:
22
github: sunrise-php/http-router
33
version: 2.16
44

5-
php_ext:
5+
extensions:
66
- apcu

0 commit comments

Comments
 (0)