File tree 3 files changed +21
-4
lines changed
3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- php : [8.0, 8.1, 8.2]
12
- laravel : [9.*, 10.*]
11
+ php : [8.0, 8.1, 8.2, 8.3 ]
12
+ laravel : [9.*, 10.*, 11.* ]
13
13
dependency-version : [prefer-lowest, prefer-stable]
14
14
include :
15
+ - laravel : 11.*
16
+ testbench : 9.*
17
+ pest-plugin-laravel : 2.3.0
18
+
15
19
- laravel : 10.*
16
20
testbench : 8.*
17
21
pest-plugin-laravel : 2.0.0
22
+
18
23
- laravel : 9.*
19
24
testbench : 7.*
20
25
pest-plugin-laravel : 1.4.0
21
26
22
27
exclude :
28
+ - laravel : 11.*
29
+ php : 8.1
30
+
31
+ - laravel : 11.*
32
+ php : 8.0
33
+
23
34
- laravel : 10.*
24
35
php : 8.0
25
36
37
+ - laravel : 9.*
38
+ php : 8.3
39
+
26
40
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
27
41
28
42
steps :
Original file line number Diff line number Diff line change 46
46
},
47
47
"require" : {
48
48
"php" : " ^8.0" ,
49
- "laravel/framework" : " ^9.0|^10.0"
49
+ "laravel/framework" : " ^9.0|^10.0|^11.0 "
50
50
},
51
51
"require-dev" : {
52
52
"pestphp/pest-plugin-laravel" : " ^1.4.0|^2.0.0" ,
53
- "orchestra/testbench" : " ^7.0|^8.0"
53
+ "orchestra/testbench" : " ^7.0|^8.0|^9.0 "
54
54
},
55
55
"config" : {
56
56
"sort-packages" : true ,
Original file line number Diff line number Diff line change 5
5
use Binafy \LaravelUserMonitoring \Middlewares \VisitMonitoringMiddleware ;
6
6
use Binafy \LaravelUserMonitoring \Providers \LaravelUserMonitoringServiceProvider ;
7
7
use Illuminate \Encryption \Encrypter ;
8
+ use Illuminate \Support \Facades \Artisan ;
8
9
use Illuminate \Support \Facades \Route ;
9
10
use Tests \SetUp \Models \User ;
10
11
@@ -59,5 +60,7 @@ protected function setUp(): void
59
60
Route::middleware ([VisitMonitoringMiddleware::class, 'web ' ])->group (__DIR__ . '/SetUp/Routes/web_tests.php ' );
60
61
61
62
$ this ->loadMigrationsFrom (__DIR__ .'/SetUp/Migrations ' );
63
+
64
+ Artisan::call ('migrate ' );
62
65
}
63
66
}
You can’t perform that action at this time.
0 commit comments