File tree Expand file tree Collapse file tree 7 files changed +12
-7
lines changed Expand file tree Collapse file tree 7 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ language: php
3
3
php :
4
4
- 7.1
5
5
- 7.2
6
+ - 7.3
6
7
7
8
env :
8
9
matrix :
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-http-logger ` will be documented in this file.
4
4
5
+ ## 1.1.4 - 2019-02-27
6
+ - Added: Laravel 5.8 compatibility
7
+
5
8
## 1.1.3 - 2018-09-04
6
9
- Added: Laravel 5.7 compatibility
7
10
Original file line number Diff line number Diff line change 17
17
],
18
18
"require" : {
19
19
"php" : " ^7.1" ,
20
- "illuminate/support" : " ~5.6.0|~5.7.0"
20
+ "illuminate/support" : " ~5.6.0|~5.7.0|~5.8.0 "
21
21
},
22
22
"require-dev" : {
23
- "orchestra/testbench" : " ~3.6.0|~3.7.0" ,
23
+ "orchestra/testbench" : " ~3.6.0|~3.7.0|~3.8.0 " ,
24
24
"phpunit/phpunit" : " ^7.0"
25
25
},
26
26
"autoload" : {
Original file line number Diff line number Diff line change 21
21
'password ' ,
22
22
'password_confirmation ' ,
23
23
],
24
-
24
+
25
25
];
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class DefaultLogWriterTest extends TestCase
10
10
/** @var \Spatie\HttpLogger\DefaultLogWriter */
11
11
protected $ logger ;
12
12
13
- public function setUp ()
13
+ public function setUp () : void
14
14
{
15
15
parent ::setup ();
16
16
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class LogNonGetRequestsTest extends TestCase
9
9
/** @var \Spatie\HttpLogger\LogNonGetRequests */
10
10
protected $ logProfile ;
11
11
12
- public function setUp ()
12
+ public function setUp () : void
13
13
{
14
14
parent ::setup ();
15
15
Original file line number Diff line number Diff line change 3
3
namespace Spatie \HttpLogger \Test ;
4
4
5
5
use Illuminate \Http \Request ;
6
- use Monolog \Handler \StreamHandler ;
7
6
use Illuminate \Support \Facades \File ;
8
7
use Illuminate \Contracts \Http \Kernel ;
9
8
use Illuminate \Support \Facades \Route ;
@@ -16,7 +15,7 @@ class TestCase extends Orchestra
16
15
{
17
16
protected $ uri = '/test-uri ' ;
18
17
19
- protected function setUp ()
18
+ protected function setUp () : void
20
19
{
21
20
parent ::setUp ();
22
21
@@ -74,6 +73,8 @@ protected function getEnvironmentSetUp($app)
74
73
'path ' => $ this ->getLogFile (),
75
74
'level ' => 'debug ' ,
76
75
]);
76
+
77
+ $ app ->config ->set ('logging.default ' , 'single ' );
77
78
}
78
79
79
80
protected function setUpRoutes ()
You can’t perform that action at this time.
0 commit comments