Skip to content

Commit da59bbf

Browse files
committedMar 21, 2025·
feat: support laravel 12
1 parent c0b92a0 commit da59bbf

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed
 

‎.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
php: [ 8.2, 8.3, 8.4 ]
22-
laravel: [ 11 ]
22+
laravel: [ 11, 12 ]
2323

2424
steps:
2525
- name: Checkout Code

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. This projec
55

66
## Unreleased
77

8+
### Added
9+
10+
- Package now supports Laravel 12.
11+
812
## [3.0.0] - 2025-03-03
913

1014
### Changed

‎composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
],
2525
"require": {
2626
"php": "^8.2",
27-
"illuminate/support": "^11.0",
28-
"laravel-json-api/eloquent": "^4.0",
29-
"tenantcloud/laravel-boolean-softdeletes": "^6.0"
27+
"illuminate/support": "^11.0|^12.0",
28+
"laravel-json-api/eloquent": "^4.5",
29+
"tenantcloud/laravel-boolean-softdeletes": "^6.0|^7.0"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^9.0",
33-
"phpunit/phpunit": "^10.5"
32+
"orchestra/testbench": "^9.0|^10.0",
33+
"phpunit/phpunit": "^10.5|^11.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

0 commit comments

Comments
 (0)
Please sign in to comment.