File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
include :
12
+ - php : 8.2
13
+ laravel : ^10.0
14
+ - php : 8.1
15
+ laravel : ^10.0
12
16
- php : 8.1
13
17
laravel : ^9.0
14
18
- php : 8.1
Original file line number Diff line number Diff line change 10
10
"license" : " MIT" ,
11
11
"minimum-stability" : " stable" ,
12
12
"require" : {
13
- "laravel/framework" : " ^8|^9" ,
14
- "spatie/sheets" : " ^1.7 "
13
+ "laravel/framework" : " ^8|^9|^10 " ,
14
+ "spatie/sheets" : " ^1.10 "
15
15
},
16
16
"require-dev" : {
17
17
"brianium/paratest" : " ^6.2" ,
18
18
"nunomaduro/collision" : " ^5|^6" ,
19
- "orchestra/testbench" : " ^ 6.15|^7 " ,
19
+ "orchestra/testbench" : " >= 6.15" ,
20
20
"squizlabs/php_codesniffer" : " ^3.5"
21
21
},
22
22
"autoload" : {
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ public function it_can_be_installed()
16
16
17
17
$ output = Artisan::output ();
18
18
19
- if ((int ) app ()->version ()[0 ] >= 9 ) {
19
+ $ version = explode ('. ' , app ()->version ())[0 ];
20
+
21
+ if ((int ) $ version >= 9 ) {
20
22
$ this ->assertStringContainsString ('DONE ' , $ output );
21
23
} else {
22
24
$ this ->assertStringContainsString ('Copied File ' , $ output );
You can’t perform that action at this time.
0 commit comments