Skip to content

Commit 4002b56

Browse files
committed
feat: add Laravel 12 and PHP 8.4 support
1 parent 5bfb172 commit 4002b56

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest]
17-
php: [8.3, 8.2]
18-
laravel: [11.*, 10.*]
17+
php: [8.4, 8.3, 8.2]
18+
laravel: [12.*, 11.*, 10.*]
1919
statamic: [5.*, 4.*]
2020
dependency-version: [prefer-lowest, prefer-stable]
2121
include:
22+
- laravel: 12.*
23+
testbench: 10.*
2224
- laravel: 11.*
2325
testbench: 9.*
2426
- laravel: 10.*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Classify is a useful helper to add CSS classes to all HTML tags generated by the
1010
## Requirements
1111

1212
- Statamic v4 || v5
13-
- Laravel 10 || 11
13+
- Laravel 10 || 11 || 12
1414
- PHP 8.2+
1515

1616
## Installation

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
"email": "[email protected]"
2424
},
2525
"require": {
26-
"php": "^8.2 || ^8.3",
27-
"laravel/framework": "^10.0 || ^11.0",
26+
"php": "^8.2 || ^8.3 || ^8.4",
27+
"laravel/framework": "^10.0 || ^11.0 || ^12.0",
2828
"statamic/cms": "^4.0 || ^5.0",
29-
"symfony/dom-crawler": "^6.0",
29+
"symfony/dom-crawler": "^6.0 || ^7.0",
3030
"symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "^8 || ^9",
34-
"phpunit/phpunit": "^9.3 || ^10.0"
33+
"orchestra/testbench": "^8 || ^9 || ^10",
34+
"phpunit/phpunit": "^9.3 || ^10.0 || ^11.5.3"
3535
},
3636
"scripts": {
3737
"test": "vendor/bin/phpunit",

0 commit comments

Comments
 (0)