Skip to content

Commit fdd1f55

Browse files
committed
Updated tests
1 parent 6082a7e commit fdd1f55

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,21 @@ jobs:
2323
- "8.3"
2424
- "8.4"
2525
laravel:
26-
- 9.*
2726
- 10.*
2827
- 11.*
2928
prefer:
3029
- "prefer-lowest"
3130
- "prefer-stable"
3231
include:
33-
- laravel: 9.*
34-
testbench: 7.*
3532
- laravel: 10.*
3633
testbench: 8.*
3734
- laravel: 11.*
3835
testbench: 9.*
36+
exclude:
37+
- php: "8.1"
38+
laravel: 11.*
39+
- php: "8.4"
40+
laravel: 10.*
3941

4042
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
4143

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
}
2121
],
2222
"require": {
23-
"illuminate/database": "^9.35|^10.5|^11",
24-
"illuminate/support": "^9.35|^10.5|^11"
23+
"illuminate/database": "^10.5|^11.33",
24+
"illuminate/support": "^10.5|^11.33"
2525
},
2626
"autoload": {
2727
"psr-4": {
@@ -41,8 +41,8 @@
4141
"laravel/legacy-factories": "^1.4",
4242
"livewire/livewire": "dev-main",
4343
"mockery/mockery": "^1.6",
44-
"orchestra/testbench": "^7.23|^8.1.1|^9",
45-
"phpunit/phpunit": "^9.5.25|^10"
44+
"orchestra/testbench": "^8.1.1|^9",
45+
"phpunit/phpunit": "^9.5.25|^10|^11"
4646
},
4747
"config": {
4848
"sort-packages": true

tests/LivewireTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class PostComponent extends Component
3434
{
3535
public Post $post;
3636

37-
public static function getName()
37+
public function getName()
3838
{
3939
return 'post';
4040
}

0 commit comments

Comments
 (0)