File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 17
17
runs-on : ubuntu-latest
18
18
strategy :
19
19
matrix :
20
- laravel : [6, 8, 9 ]
20
+ laravel : [9, 10 ]
21
21
22
22
steps :
23
23
- name : Checkout code
26
26
- name : Setup PHP
27
27
uses : shivammathur/setup-php@v2
28
28
with :
29
- php-version : ' 8.0 '
29
+ php-version : ' 8.1 '
30
30
31
31
- name : Install dependencies
32
32
run : composer require "laravel/framework:^${{matrix.laravel}}.0"
Original file line number Diff line number Diff line change 16
16
}
17
17
},
18
18
"require" : {
19
- "illuminate/translation" : " ^6 .0|^8.0|^9 .0"
19
+ "illuminate/translation" : " ^9 .0|^10 .0"
20
20
},
21
21
"require-dev" : {
22
- "orchestra/testbench" : " ^4 .0|^6.0|^7 .0" ,
22
+ "orchestra/testbench" : " ^7 .0|^8 .0" ,
23
23
"phpunit/phpunit" : " ^9.5" ,
24
- "nunomaduro/larastan" : " ^1.0 "
24
+ "nunomaduro/larastan" : " ^2.4 "
25
25
},
26
26
"extra" : {
27
27
"laravel" : {
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public function setUp(): void
11
11
{
12
12
parent ::setUp ();
13
13
14
+ // @phpstan-ignore-next-line
14
15
$ this ->app ->bind ('translation.loader ' , GlossLoader::class);
15
16
}
16
17
You can’t perform that action at this time.
0 commit comments