Skip to content

Commit 8b58d1b

Browse files
Laravel 13.x Compatibility (#152)
* Bump dependencies for Laravel 13 * Update GitHub Actions for Laravel 13
1 parent af27bbc commit 8b58d1b

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: true
2121
matrix:
2222
php: [8.1, 8.2, 8.3, 8.4, 8.5]
23-
laravel: [10, 11, 12]
23+
laravel: [10, 11, 12, 13]
2424
exclude:
2525
- php: 8.1
2626
laravel: 11
@@ -32,6 +32,10 @@ jobs:
3232
laravel: 10
3333
- php: 8.5
3434
laravel: 11
35+
- laravel: '13'
36+
php: 8.1
37+
- laravel: '13'
38+
php: 8.2
3539

3640
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3741

@@ -50,7 +54,7 @@ jobs:
5054

5155
- name: Install dependencies
5256
run: |
53-
composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:^${{ matrix.laravel }}"
57+
composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:^${{ matrix.laravel }}"
5458
5559
- name: Execute tests
5660
run: vendor/bin/pest
@@ -62,7 +66,7 @@ jobs:
6266
fail-fast: true
6367
matrix:
6468
php: [8.1, 8.2, 8.3, 8.4, 8.5]
65-
laravel: [10, 11, 12]
69+
laravel: [10, 11, 12, 13]
6670
exclude:
6771
- php: 8.1
6872
laravel: 11
@@ -74,6 +78,10 @@ jobs:
7478
laravel: 10
7579
- php: 8.5
7680
laravel: 11
81+
- laravel: '13'
82+
php: 8.1
83+
- laravel: '13'
84+
php: 8.2
7785

7886
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} Windows
7987

@@ -101,7 +109,7 @@ jobs:
101109

102110
- name: Install dependencies
103111
run: |
104-
composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:~${{ matrix.laravel }}"
112+
composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:~${{ matrix.laravel }}"
105113
106114
- name: Execute tests
107115
run: vendor/bin/pest

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"name": "livewire/volt",
33
"description": "An elegantly crafted functional API for Laravel Livewire.",
4-
"keywords": ["laravel", "livewire", "volt"],
4+
"keywords": [
5+
"laravel",
6+
"livewire",
7+
"volt"
8+
],
59
"homepage": "https://github.com/livewire/volt",
610
"license": "MIT",
711
"support": {
@@ -20,14 +24,14 @@
2024
],
2125
"require": {
2226
"php": "^8.1",
23-
"laravel/framework": "^10.38.2|^11.0|^12.0",
27+
"laravel/framework": "^10.38.2|^11.0|^12.0|^13.0",
2428
"livewire/livewire": "^3.6.1|^4.0"
2529
},
2630
"require-dev": {
2731
"laravel/folio": "^1.1",
28-
"orchestra/testbench": "^8.36|^9.15|^10.8",
32+
"orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
2933
"pestphp/pest": "^2.9.5|^3.0|^4.0",
30-
"phpstan/phpstan": "^1.10"
34+
"phpstan/phpstan": "^1.10|^2.1"
3135
},
3236
"autoload": {
3337
"psr-4": {

0 commit comments

Comments
 (0)