Skip to content

Commit 66584d3

Browse files
authored
Merge pull request #26 from coderflexx/pr-25
Add Laravel 12.x Support
2 parents e907852 + ef24e83 commit 66584d3

File tree

2 files changed

+16
-19
lines changed

2 files changed

+16
-19
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,16 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
os: [ubuntu-latest, windows-latest]
22-
php: [8.1, 8.2, 8.3]
23-
laravel: [10.*, 11.*]
22+
php: [8.2, 8.3]
23+
laravel: [11.*, 12.*]
2424
stability: [prefer-stable]
2525
include:
26-
- laravel: 10.*
27-
testbench: 8.*
28-
carbon: ^2.63
2926
- laravel: 11.*
3027
testbench: 9.*
3128
carbon: '*'
32-
exclude:
33-
- laravel: 11.*
34-
php: 8.1
29+
- laravel: 12.*
30+
testbench: 10.*
31+
carbon: '*'
3532

3633
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3734

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.1",
23+
"php": "^8.2|^8.3",
2424
"coderflex/laravel-turnstile": "^1.0|^2.0",
25-
"illuminate/contracts": "^10.0|^11.0",
25+
"illuminate/contracts": "^10.0|^11.0|^12.0",
2626
"spatie/laravel-package-tools": "^1.14.0"
2727
},
2828
"require-dev": {
2929
"filament/filament": "^3.0",
3030
"laravel/pint": "^1.0",
31-
"nunomaduro/collision": "^7.9|^8.1",
32-
"larastan/larastan": "^2.0.1",
33-
"orchestra/testbench": "^8.0|^9.0",
34-
"pestphp/pest": "^2.0",
35-
"pestphp/pest-plugin-arch": "^2.0",
36-
"pestphp/pest-plugin-laravel": "^2.0",
37-
"pestphp/pest-plugin-livewire": "^2.0",
31+
"larastan/larastan": "^2.8|^3.0",
32+
"nunomaduro/collision": "^7.0|^8.0",
33+
"nunomaduro/larastan": "^2.8.0|^3.1.0",
34+
"orchestra/testbench": "^8.0|^9.0|^10.0",
35+
"pestphp/pest": "^2.0|^3.7",
36+
"pestphp/pest-plugin-arch": "^2.0|^3.0",
3837
"phpstan/extension-installer": "^1.1",
39-
"phpstan/phpstan-deprecation-rules": "^1.0",
40-
"phpstan/phpstan-phpunit": "^1.0"
38+
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
39+
"phpstan/phpstan-phpunit": "^1.0|^2.0",
40+
"pestphp/pest-plugin-livewire": "^2.0|^3.0"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)