Skip to content

Commit 8507f27

Browse files
Added Laravel 13 support, dropped PHP 8.1 support
1 parent 51c03f5 commit 8507f27

3 files changed

Lines changed: 18 additions & 14 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,14 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
12-
laravel: ['10.49', '11.46', '11.47', '12.38', '12.43']
11+
php: ['8.2', '8.3', '8.4', '8.5']
12+
laravel: ['11.46', '11.51', '12.50', '12.56', '13.0', '13.5']
1313
enum: ['2', '3', '4']
1414
exclude:
15-
- php: '8.1'
16-
laravel: '11.46'
17-
- php: '8.1'
18-
laravel: '11.47'
19-
- php: '8.1'
20-
laravel: '12.38'
21-
- php: '8.1'
22-
laravel: '12.43'
15+
- php: '8.2'
16+
laravel: '13.0'
17+
- php: '8.3'
18+
laravel: '13.5'
2319
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} Enum ${{ matrix.enum }}
2420
steps:
2521
- name: Checkout

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## 1.X Series
44

5+
## Unreleased
6+
##### 2026-XX-YY
7+
8+
- Added Laravel 13 support
9+
- Dropped Laravel 10 support
10+
- Dropped PHP 8.1 support
11+
- Changed the minimum Laravel version requirements to v11.46.2, v12.50 and v13.0
12+
513
## 1.17.1
614
##### 2025-12-20
715

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"issues": "https://github.com/artkonekt/concord"
1616
},
1717
"require": {
18-
"php": "^8.1",
19-
"illuminate/support": "^10.49|^11.46.2|^12.38",
20-
"illuminate/console": "^10.49|^11.46.2|^12.38",
18+
"php": "^8.2",
19+
"illuminate/support": "^11.46.2|^12.50|^13.0",
20+
"illuminate/console": "^11.46.2|^12.50|^13.0",
2121
"konekt/enum": "^2.1|^3.0|^4.0",
2222
"konekt/enum-eloquent": "^1.7"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^8.0|^9.0|^10.0",
25+
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
2626
"phpunit/phpunit" : "10 - 12"
2727
},
2828
"autoload": {

0 commit comments

Comments
 (0)