Skip to content

Commit 3ccd71a

Browse files
Added Laravel 12 support
1 parent d3f64af commit 3ccd71a

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

.github/workflows/tests.yml

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

Changelog.md

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

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

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "konekt/acl",
3-
"description": "Concord Module for Permission handling (Laravel 10 - 11)",
3+
"description": "Concord Module for Permission handling (Laravel 10 - 12)",
44
"keywords": [
55
"laravel",
66
"eloquent",
@@ -29,15 +29,15 @@
2929
],
3030
"require": {
3131
"php" : "^8.2",
32-
"illuminate/auth": "^10.0|^11.0",
33-
"illuminate/container": "^10.0|^11.0",
34-
"illuminate/contracts": "^10.0|^11.0",
35-
"illuminate/database": "^10.0|^11.0",
32+
"illuminate/auth": "^10.0|^11.0|^12.0",
33+
"illuminate/container": "^10.0|^11.0|^12.0",
34+
"illuminate/contracts": "^10.0|^11.0|^12.0",
35+
"illuminate/database": "^10.0|^11.0|^12.0",
3636
"konekt/concord": "^1.13"
3737
},
3838
"require-dev": {
39-
"orchestra/testbench": "^8.0|^9.0",
40-
"phpunit/phpunit" : "^10.0"
39+
"orchestra/testbench": "^8.0|^9.0|^10.0",
40+
"phpunit/phpunit" : "^10.0|^11.0"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)