Skip to content

Commit cc162e7

Browse files
authored
Supports Laravel 12 (#129)
* Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip * Update composer.json --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 9be865f commit cc162e7

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

.github/workflows/tests.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ jobs:
2020
fail-fast: true
2121
matrix:
2222
php: [8.1, 8.2, 8.3, 8.4]
23-
laravel: [10, 11]
23+
laravel: [10, 11, 12]
2424
exclude:
25-
- php: 8.4
26-
laravel: 10
2725
- php: 8.1
2826
laravel: 11
27+
- php: 8.1
28+
laravel: 12
29+
- php: 8.4
30+
laravel: 10
2931

3032
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3133

@@ -56,12 +58,14 @@ jobs:
5658
fail-fast: true
5759
matrix:
5860
php: [8.1, 8.2, 8.3, 8.4]
59-
laravel: [10, 11]
61+
laravel: [10, 11, 12]
6062
exclude:
61-
- php: 8.4
62-
laravel: 10
6363
- php: 8.1
6464
laravel: 11
65+
- php: 8.1
66+
laravel: 12
67+
- php: 8.4
68+
laravel: 10
6569

6670
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} Windows
6771

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
],
2121
"require": {
2222
"php": "^8.1",
23-
"laravel/framework": "^10.38.2|^11.0",
23+
"laravel/framework": "^10.38.2|^11.0|^12.0",
2424
"livewire/livewire": "^3.0"
2525
},
2626
"require-dev": {
2727
"laravel/folio": "^1.1",
2828
"mockery/mockery": "^1.6",
29-
"orchestra/testbench": "^8.15.0|^9.0",
30-
"pestphp/pest": "^2.9.5",
29+
"orchestra/testbench": "^8.15.0|^9.0|^10.0",
30+
"pestphp/pest": "^2.9.5|^3.0",
3131
"phpstan/phpstan": "^1.10"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)