Skip to content

Commit bc75f35

Browse files
authored
Merge pull request #52 from j-schumann/2.6
Support PHP 8.4 (for 2.6)
2 parents 37826b7 + 5396193 commit bc75f35

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build and test
1616
strategy:
1717
matrix:
18-
php: [8.1, 8.2, 8.3]
18+
php: [8.1, 8.2, 8.3, 8.4]
1919
deps: [high]
2020
include:
2121
- php: 8.1
@@ -44,7 +44,7 @@ jobs:
4444
run: make update-min test-min
4545

4646
- name: Upload the phar
47-
uses: actions/upload-artifact@v1
47+
uses: actions/upload-artifact@v4
4848
if: matrix.php == '8.1' && matrix.deps == 'high'
4949
with:
5050
name: zalas-phpunit-globals-extension.phar
@@ -56,7 +56,7 @@ jobs:
5656
needs: tests
5757
strategy:
5858
matrix:
59-
php: [8.1, 8.2, 8.3]
59+
php: [8.1, 8.2, 8.3, 8.4]
6060
steps:
6161
- uses: actions/checkout@v3
6262

@@ -67,7 +67,7 @@ jobs:
6767
ini-values: "phar.readonly=0"
6868

6969
- name: Download the phar
70-
uses: actions/download-artifact@v1
70+
uses: actions/download-artifact@v4
7171
with:
7272
name: zalas-phpunit-globals-extension.phar
7373
path: build/
@@ -84,7 +84,7 @@ jobs:
8484
if: github.event_name == 'release'
8585
steps:
8686
- name: Download the phar
87-
uses: actions/download-artifact@v1
87+
uses: actions/download-artifact@v4
8888
with:
8989
name: zalas-phpunit-globals-extension.phar
9090
path: .

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.1.0 || ~8.2.0 || ~8.3.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1414
"phpunit/phpunit": "^9.0"
1515
},
1616
"conflict": {

0 commit comments

Comments
 (0)