Skip to content

Commit 8f7bebf

Browse files
jzernovicJakub Žernovič
andauthored
Update minimum PHP to version 8.2 (currently still supported version) (#167)
Co-authored-by: Jakub Žernovič <zernovic@efabrica.sk>
1 parent c49e04f commit 8f7bebf

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
15+
php: [ '8.2', '8.3', '8.4' ]
1616

1717
name: PHPunit PHP ${{ matrix.php }}
1818

.github/workflows/syntax_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
15+
php: [ '8.2', '8.3', '8.4' ]
1616

1717
name: PHP syntax checker PHP ${{ matrix.php }}
1818

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
33
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

55
## [Unreleased][unreleased]
6+
### Changed
7+
* update minimum PHP to version 8.2 (currently still supported version) + update league/fractal library [BC]
68

79
## 3.2.0
810

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">= 7.1.0",
14+
"php": ">= 8.2.0",
1515
"ext-curl": "*",
1616
"ext-json": "*",
1717
"ext-session": "*",
1818
"ext-filter": "*",
1919
"nette/application": "^3.0",
2020
"nette/http": "^3.0",
2121
"tracy/tracy": "^2.6",
22-
"league/fractal": "~0.17",
22+
"league/fractal": "~0.20",
2323
"tomaj/nette-bootstrap-form": "^2.0",
2424
"justinrainbow/json-schema": "^5.2|^6.6"
2525
},

0 commit comments

Comments
 (0)