Skip to content

Commit a8dbd2f

Browse files
authored
Merge pull request #26 from TappNetwork/laravel12
Add Laravel 12 compatibility
2 parents 8a27745 + 6518678 commit a8dbd2f

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,18 @@ jobs:
1818
matrix:
1919
os: [ubuntu-latest]
2020
php: [8.3, 8.2]
21-
laravel: [10.*]
21+
laravel: [10.*, 11.*, 12.*]
2222
stability: [prefer-lowest, prefer-stable]
2323
include:
2424
- laravel: 10.*
2525
testbench: 8.*
2626
carbon: ^2.63
27+
- laravel: 11.*
28+
testbench: ^9.0
29+
carbon: ^2.63
30+
- laravel: 12.*
31+
testbench: ^10.0
32+
carbon: ^3.0
2733

2834
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2935

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@
2424
"php": "^8.2",
2525
"spatie/laravel-package-tools": "^1.16",
2626
"filament/filament": "^3.0-stable",
27-
"illuminate/contracts": "^10.0||^11.0",
27+
"illuminate/contracts": "^10.0||^11.0||^12.0",
2828
"skagarwal/google-places-api": "^3.0"
2929
},
3030
"require-dev": {
31-
"larastan/larastan": "^2.9",
31+
"larastan/larastan": "^2.9|^3.0",
3232
"laravel/pint": "^1.14",
3333
"nunomaduro/collision": "^8.1.1||^7.10.0",
34-
"orchestra/testbench": "^9.0.0||^8.22.0",
35-
"pestphp/pest": "^2.34",
36-
"pestphp/pest-plugin-arch": "^2.7",
37-
"pestphp/pest-plugin-laravel": "^2.3",
38-
"pestphp/pest-plugin-livewire": "^2.1",
34+
"orchestra/testbench": "^8.22.0||^9.0.0||^10.0.0",
35+
"pestphp/pest": "^2.34||^3.0",
36+
"pestphp/pest-plugin-arch": "^2.7||^3.0",
37+
"pestphp/pest-plugin-laravel": "^2.3||^3.0",
38+
"pestphp/pest-plugin-livewire": "^2.1||^3.0",
3939
"phpstan/extension-installer": "^1.3",
40-
"phpstan/phpstan-deprecation-rules": "^1.1",
41-
"phpstan/phpstan-phpunit": "^1.3",
40+
"phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
41+
"phpstan/phpstan-phpunit": "^1.3||^2.0",
4242
"spatie/laravel-ray": "^1.35"
4343
},
4444
"autoload": {

0 commit comments

Comments
 (0)