File tree 4 files changed +14
-7
lines changed
4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,15 @@ jobs:
23
23
laravel :
24
24
- ' 10.0'
25
25
- ' 11.0'
26
+ - ' 12.0'
26
27
27
28
include :
28
29
- laravel : ' 10.0'
29
30
testbench : ' 8.0'
30
31
- laravel : ' 11.0'
31
32
testbench : ' 9.0'
33
+ - laravel : ' 12.0'
34
+ testbench : ' 10.0'
32
35
- php : 8.3
33
36
laravel : ' 11.0'
34
37
stable : true
Original file line number Diff line number Diff line change 6
6
Thumbs.db
7
7
.php-cs-fixer.cache
8
8
/composer.lock
9
+ /auth.json
10
+ /report-junit.xml
11
+ /.env
Original file line number Diff line number Diff line change 15
15
"ext-json" : " *" ,
16
16
"codex-team/editor.js" : " *" ,
17
17
"guzzlehttp/guzzle" : " ^7.0" ,
18
- "illuminate/support" : " ^10.0 || ^11.0" ,
19
- "illuminate/events" : " ^10.0 || ^11.0" ,
20
- "laravel/nova" : " ^4.0" ,
18
+ "illuminate/events" : " ^10.0 || ^11.0 || ^12.0" ,
19
+ "illuminate/support" : " ^10.0 || ^11.0 || ^12.0" ,
20
+ "laravel/laravel" : " ^12" ,
21
+ "laravel/nova" : " ^4.0 || ^5.0" ,
21
22
"spatie/image" : " ^3.0"
22
23
},
23
24
"require-dev" : {
24
25
"laravel/pint" : " ^1.15" ,
25
- "orchestra/testbench" : " ^8.0 || ^9.0 " ,
26
+ "orchestra/testbench" : " ^10 " ,
26
27
"php-parallel-lint/php-parallel-lint" : " ^1.3"
27
28
},
28
29
"autoload" : {
66
67
"prefer-stable" : true ,
67
68
"repositories" : [
68
69
{
69
- "type" : " composer " ,
70
- "url" : " https:// nova.laravel.com "
70
+ "type" : " path " ,
71
+ "url" : " ./tests/Fixtures/ nova"
71
72
}
72
73
]
73
74
}
Original file line number Diff line number Diff line change 9
9
10
10
trait ViewTestHelpers
11
11
{
12
- protected function view (string $ view , array $ args = []): TestView
12
+ protected function view (string $ view , $ args = []): TestView
13
13
{
14
14
return new TestView (View::make ($ view , $ args ));
15
15
}
You can’t perform that action at this time.
0 commit comments