File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ APP_DEBUG=true
5
5
APP_URL = http://localhost
6
6
7
7
LOG_CHANNEL = stack
8
+ LOG_DEPRECATIONS_CHANNEL = null
8
9
LOG_LEVEL = debug
9
10
10
11
DB_CONNECTION = mysql
Original file line number Diff line number Diff line change 8
8
"php" : " ^7.3|^8.0" ,
9
9
"fruitcake/laravel-cors" : " ^2.0" ,
10
10
"guzzlehttp/guzzle" : " ^7.0.1" ,
11
- "laravel/framework" : " ^8.54 " ,
11
+ "laravel/framework" : " ^8.65 " ,
12
12
"laravel/sanctum" : " ^2.11" ,
13
13
"laravel/tinker" : " ^2.5"
14
14
},
18
18
"laravel/sail" : " ^1.0.1" ,
19
19
"mockery/mockery" : " ^1.4.4" ,
20
20
"nunomaduro/collision" : " ^5.10" ,
21
- "phpunit/phpunit" : " ^9.5.8 "
21
+ "phpunit/phpunit" : " ^9.5.10 "
22
22
},
23
23
"autoload" : {
24
24
"psr-4" : {
Original file line number Diff line number Diff line change 19
19
20
20
'default ' => env ('LOG_CHANNEL ' , 'stack ' ),
21
21
22
+ /*
23
+ |--------------------------------------------------------------------------
24
+ | Deprecations Log Channel
25
+ |--------------------------------------------------------------------------
26
+ |
27
+ | This option controls the log channel that should be used to log warnings
28
+ | regarding deprecated PHP and library features. This allows you to get
29
+ | your application ready for upcoming major versions of dependencies.
30
+ |
31
+ */
32
+
33
+ 'deprecations ' => env ('LOG_DEPRECATIONS_CHANNEL ' , 'null ' ),
34
+
22
35
/*
23
36
|--------------------------------------------------------------------------
24
37
| Log Channels
You can’t perform that action at this time.
0 commit comments