Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"

steps:
- name: "Checkout"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
Expand All @@ -34,7 +33,7 @@ jobs:
tools: composer:v2, cs2pr

- name: "Cache dependencies"
uses: "actions/cache@v2"
uses: "actions/cache@v4"
with:
path: |
~/.composer/cache
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"variadic",
"consecutive params"
],
"homepage": "https://github.com/nopenopenope/behat-test-runner",
"homepage": "https://www.bytes-commerce.de",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"authors": [
{
"name": "Maximilian Graf Schimmelmann",
"email": "[email protected]",
"homepage": "https://www.schimmelmann.org",
"email": "[email protected]",
"homepage": "https://www.bytes-commerce.de",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0"
"php": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.9'

services:
php:
build:
Expand Down
6 changes: 3 additions & 3 deletions docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM php:8.2.7-zts-alpine3.18
FROM php:8.3

WORKDIR /var/www/html/
ENV COMPOSER_ALLOW_SUPERUSER=1

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

RUN apk add --update linux-headers
RUN apk add -u \
RUN apt update
RUN apt install -y \
nano \
wget \
unzip \
Expand Down