Skip to content

Commit 218f82e

Browse files
authored
Merge pull request #24 from karriereat/dev/laravel-12
chore: Laravel 12 Support (+ PHP 8.4. Support)
2 parents 5f54da6 + 00c6777 commit 218f82e

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/ci.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: true
1414
matrix:
15-
php: [ "8.1", "8.2", "8.3" ]
15+
php: [ "8.1", "8.2", "8.3", "8.4" ]
1616

1717
runs-on: ubuntu-latest
1818
name: PHP@${{ matrix.php }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.2.0] - 2025-03-27
8+
### Added
9+
- Support for PHP 8.4
10+
- Support for `illuminate/support` v12
11+
- Support for `illuminate/session` v12
12+
713
## [3.1.0] - 2024-02-27
814
### Added
915
- Support for PHP 8.3

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
],
2020
"license": "Apache-2.0",
2121
"require": {
22-
"php": "8.1.* || 8.2.*|| 8.3.*",
23-
"illuminate/support": "^10.0 || ^11.0",
24-
"illuminate/session": "^10.0 || ^11.0",
22+
"php": "8.1.* || 8.2.*|| 8.3.* || 8.4.*",
23+
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
24+
"illuminate/session": "^10.0 || ^11.0 || ^12.0",
2525
"psr/cache": "^1.0 || ^2.0 || ^3.0 "
2626
},
2727
"require-dev": {

0 commit comments

Comments
 (0)