Skip to content

Commit 9c0d27f

Browse files
authored
Merge pull request #46 from cultuurnet/php8.0
III-6745 Support PHP 8.0 only
2 parents 7192b7e + b4dc54a commit 9c0d27f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php-version: [7.4, 8.0]
10+
php-version: [8.0]
1111

1212
steps:
1313
- name: 📤 Checkout project
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
matrix:
31-
php-version: [7.4, 8.0]
31+
php-version: [8.0]
3232

3333
steps:
3434
- name: 📤 Checkout project
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
strategy:
5151
matrix:
52-
php-version: [ 7.4, 8.0 ]
52+
php-version: [8.0]
5353

5454
steps:
5555
- name: 📤 Checkout project

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"publiq/php-cs-fixer-config": "^2.1"
1919
},
2020
"require": {
21-
"php": ">=7.4",
21+
"php": ">=8.0",
2222
"ext-simplexml": "*",
2323
"ext-dom": "*"
2424
},

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
php:
3-
build: docker/php7.4
3+
build: docker/php8.0
44
container_name: php
55
working_dir: /cdb
66
volumes:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.4-cli
1+
FROM php:8.0-cli
22

33
RUN apt-get update && apt-get install -y \
44
unzip \

0 commit comments

Comments
 (0)