Skip to content

Commit ff0678f

Browse files
committed
Allow PHP 8.4
1 parent 275695f commit ff0678f

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

.github/workflows/ci.yaml

+7-11
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"

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1313

1414
### Changed
1515

16-
- Require orisai/object-mapper:^0.3.0
16+
- Composer
17+
- Allow PHP 8.4
18+
- Require orisai/object-mapper:^0.3.0
1719

1820
## [0.1.1](https://github.com/orisai/nette-object-mapper/compare/0.1.0...0.1.1) - 2024-06-22
1921

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828
],
2929
"require": {
30-
"php": "7.4 - 8.3",
30+
"php": "7.4 - 8.4",
3131
"nette/caching": "^3.1.0",
3232
"nette/di": "^3.1.0",
3333
"orisai/exceptions": "^1.0.0",

tools/phpstan.neon

+1-1
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)