Skip to content

Commit fcf559a

Browse files
dropped PHP 8.0 support
1 parent 324174a commit fcf559a

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
name: Build and test
1616
strategy:
1717
matrix:
18-
php: [8.0, 8.1, 8.2, 8.3]
18+
php: [8.1, 8.2, 8.3]
1919
deps: [high]
2020
include:
21-
- php: 8.0
21+
- php: 8.1
2222
deps: low
2323

2424
steps:
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Upload the phar
4747
uses: actions/upload-artifact@v1
48-
if: matrix.php == '8.0' && matrix.deps == 'high'
48+
if: matrix.php == '8.1' && matrix.deps == 'high'
4949
with:
5050
name: zalas-phpunit-globals-extension.phar
5151
path: build/zalas-phpunit-globals-extension.phar
@@ -56,8 +56,7 @@ jobs:
5656
needs: tests
5757
strategy:
5858
matrix:
59-
php: [8.0, 8.1, 8.2, 8.3]
60-
59+
php: [8.1, 8.2, 8.3]
6160
steps:
6261
- uses: actions/checkout@v3
6362

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ build/zalas-phpunit-globals-extension.phar: tools/box
5555

5656
cd build/phar && \
5757
composer remove phpunit/phpunit --no-update && \
58-
composer config platform.php 8.0 && \
58+
composer config platform.php 8.1 && \
5959
composer update --no-dev -o -a
6060

6161
tools/box compile

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
1414
"phpunit/phpunit": "^9.0"
1515
},
1616
"conflict": {

0 commit comments

Comments
 (0)