Skip to content

Commit 8aec7e9

Browse files
Added Laravel 12 support
1 parent b00fb77 commit 8aec7e9

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/tests.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
php: ['8.1', '8.2', '8.3']
12-
laravel: ['10.0', '10.48', '11.0']
11+
php: ['8.1', '8.2', '8.3', '8.4']
12+
laravel: ['10.0', '10.48', '11.0', '11.44', '12.0']
1313
exclude:
1414
- php: '8.1'
1515
laravel: '11.0'
16+
- php: '8.1'
17+
laravel: '11.44'
18+
- php: '8.1'
19+
laravel: '12.0'
1620
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1721
steps:
1822
- name: Checkout

Changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Bearer Auth Changelog
22

3+
## Unreleased
4+
##### 2025-XX-YY
5+
6+
- Added Laravel 12 support
7+
- Added PHP 8.4 support
8+
39
## 1.5.0
410
##### 2024-03-12
511

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"require": {
1919
"php": "^8.1",
2020
"lcobucci/jwt": "^4.0",
21-
"laravel/framework": "^10.0|^11.0",
21+
"laravel/framework": "^10.0|^11.0|^12.0",
2222
"konekt/concord": "^1.13"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^10.0",
26-
"orchestra/testbench": "^8.0|^9.0"
26+
"orchestra/testbench": "^8.0|^9.0|^12.0"
2727
},
2828
"autoload": {
2929
"psr-4": { "Konekt\\BearerAuth\\": "src/" }

0 commit comments

Comments
 (0)