Skip to content

Commit 34e6f01

Browse files
committed
Allow PHP 8.4
1 parent 1e5816a commit 34e6f01

3 files changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
matrix:
3636
include:
3737
- operating-system: "ubuntu-latest"
38-
php-version: "8.3"
38+
php-version: "8.4"
3939

4040
steps:
4141
- name: "Checkout"
@@ -68,7 +68,7 @@ jobs:
6868
matrix:
6969
include:
7070
- operating-system: "ubuntu-latest"
71-
php-version: "8.3"
71+
php-version: "8.4"
7272

7373
steps:
7474
- name: "Checkout"
@@ -101,24 +101,20 @@ jobs:
101101
strategy:
102102
matrix:
103103
operating-system: [ "ubuntu-latest" ]
104-
php-version: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]
104+
php-version: [ "7.4", "8.0", "8.1", "8.2", "8.3", "8.4" ]
105105
composer-flags: [ "" ]
106106
experimental: [ false ]
107107
include:
108108
- operating-system: "ubuntu-latest"
109109
php-version: "7.4"
110110
composer-flags: "--prefer-lowest --prefer-stable"
111111
experimental: false
112-
- operating-system: "ubuntu-latest"
113-
php-version: "8.4"
114-
composer-flags: "--ignore-platform-req=php+"
115-
experimental: true
116112
- operating-system: "macos-latest"
117-
php-version: "8.3"
113+
php-version: "8.4"
118114
composer-flags: ""
119115
experimental: false
120116
- operating-system: "windows-latest"
121-
php-version: "8.3"
117+
php-version: "8.4"
122118
composer-flags: ""
123119
experimental: false
124120

@@ -170,7 +166,7 @@ jobs:
170166
matrix:
171167
include:
172168
- operating-system: "ubuntu-latest"
173-
php-version: "8.3"
169+
php-version: "8.4"
174170

175171
steps:
176172
- name: "Coveralls"
@@ -190,7 +186,7 @@ jobs:
190186
matrix:
191187
include:
192188
- operating-system: "ubuntu-latest"
193-
php-version: "8.3"
189+
php-version: "8.4"
194190

195191
steps:
196192
- name: "Checkout"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131
],
3232
"require": {
33-
"php": "7.4 - 8.3",
33+
"php": "7.4 - 8.4",
3434
"ext-dom": "*",
3535
"orisai/exceptions": "^1.1.0",
3636
"symfony/polyfill-php80": "^1.26.0"

tools/phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ includes:
33
- phpstan.baseline.neon
44

55
parameters:
6-
phpVersion: 80300
6+
phpVersion: 80400
77
level: 8
88
tmpDir: ../var/tools/PHPStan
99
resultCachePath: %currentWorkingDirectory%/var/tools/PHPStan/resultCache.php

0 commit comments

Comments
 (0)