Skip to content

Commit 95c90a0

Browse files
Deprecate PHP7.4, adapt docker compose file.
1 parent 5575488 commit 95c90a0

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
"variadic",
1010
"consecutive params"
1111
],
12-
"homepage": "https://github.com/nopenopenope/behat-test-runner",
12+
"homepage": "https://www.bytes-commerce.de",
1313
"license": "GPL-3.0-or-later",
1414
"minimum-stability": "dev",
1515
"authors": [
1616
{
1717
"name": "Maximilian Graf Schimmelmann",
18-
"email": "[email protected]",
19-
"homepage": "https://www.schimmelmann.org",
18+
"email": "[email protected]",
19+
"homepage": "https://www.bytes-commerce.de",
2020
"role": "Developer"
2121
}
2222
],
2323
"require": {
24-
"php": "^7.4|^8.0"
24+
"php": "^8.0"
2525
},
2626
"require-dev": {
2727
"phpstan/phpstan": "^1.10",

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.9'
2-
31
services:
42
php:
53
build:

docker/php/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.2.7-zts-alpine3.18
1+
FROM php:8.3
22

33
WORKDIR /var/www/html/
44
ENV COMPOSER_ALLOW_SUPERUSER=1
55

66
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
77

8-
RUN apk add --update linux-headers
9-
RUN apk add -u \
8+
RUN apt update
9+
RUN apt install -y \
1010
nano \
1111
wget \
1212
unzip \

0 commit comments

Comments
 (0)