Skip to content

Commit 4bea64f

Browse files
committed
[Refactor] Drop support for PHP 7.4 and Laravel 8
1 parent b8ca9b6 commit 4bea64f

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,8 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [7.4, '8.0', 8.1, 8.2]
18-
laravel: [8.76, 9]
19-
exclude:
20-
- php: 7.4
21-
laravel: 9
22-
- php: 8.2
23-
laravel: 8.76
17+
php: ['8.0', 8.1, 8.2]
18+
laravel: [9]
2419

2520
steps:
2621
- name: Checkout Code

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ All notable changes to this project will be documented in this file. This projec
77

88
### Changed
99

10+
- Drop support for PHP `7.4` - minimum PHP version is now `8.0`.
11+
- Drop support for Laravel 8.
1012
- Upgraded `laravel-json-api/neomerx-json-api` dependency to `^1.2`. This allows v1, v2 and v3 of the PSR log
1113
dependency, whereas previously only v1 was allowed.
1214

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^7.4|^8.0",
25+
"php": "^8.0",
2626
"ext-json": "*",
2727
"laravel-json-api/neomerx-json-api": "^1.2",
28-
"laravel/framework": "^8.76|^9.0",
28+
"laravel/framework": "^9.0",
2929
"nyholm/psr7": "^1.2",
3030
"ramsey/uuid": "^3.0|^4.0",
3131
"symfony/psr-http-message-bridge": "^2.0"

0 commit comments

Comments
 (0)