File tree 2 files changed +9
-7
lines changed
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 19
19
strategy :
20
20
fail-fast : true
21
21
matrix :
22
- php : [8.1, 8.2, 8.3]
22
+ php : [8.1, 8.2, 8.3, 8.4 ]
23
23
laravel : [10, 11]
24
24
exclude :
25
+ - php : 8.4
26
+ laravel : 10
25
27
- php : 8.1
26
28
laravel : 11
27
29
42
44
43
45
- name : Install dependencies
44
46
run : |
45
- composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
46
- composer update --prefer-dist --no-interaction --no-progress
47
+ composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:^${{ matrix.laravel }}"
47
48
48
49
- name : Execute tests
49
50
run : vendor/bin/pest
54
55
strategy :
55
56
fail-fast : true
56
57
matrix :
57
- php : [8.1, 8.2, 8.3]
58
+ php : [8.1, 8.2, 8.3, 8.4 ]
58
59
laravel : [10, 11]
59
60
exclude :
61
+ - php : 8.4
62
+ laravel : 10
60
63
- php : 8.1
61
64
laravel : 11
62
65
86
89
87
90
- name : Install dependencies
88
91
run : |
89
- composer require "illuminate/contracts=~${{ matrix.laravel }}" --no-update
90
- composer update --prefer-dist --no-interaction --no-progress
92
+ composer update --prefer-dist --no-interaction --no-progress --with="laravel/framework:~${{ matrix.laravel }}"
91
93
92
94
- name : Execute tests
93
95
run : vendor/bin/pest
Original file line number Diff line number Diff line change 5
5
use Livewire \Volt \Component ;
6
6
use Livewire \Volt \InlineListenerName ;
7
7
8
- use function Livewire \Volt \{ on } ;
8
+ use function Livewire \Volt \on ;
9
9
10
10
it ('resolves the registered listeners ' , function () {
11
11
$ context = CompileContext::instance ();
You can’t perform that action at this time.
0 commit comments