Skip to content

Commit 3054c42

Browse files
committed
Add support for Laravel 5.6
1 parent 9802c30 commit 3054c42

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
composer.phar
22
composer.lock
33
/vendor/
4+
.phpunit.result.cache
45

56
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
67
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.1.0] - 2019-09-04
8+
### Added
9+
- Support for Laravel 6.0
10+
711
## [1.0.6] - 2019-03-01
812
### Added
913
- Support for Laravel 5.8

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,21 @@
44
[![StyleCI](https://styleci.io/repos/126970369/shield?branch=master)](https://styleci.io/repos/126970369)
55
[![Build Status](https://travis-ci.org/freshbitsweb/laravel-log-enhancer.svg?branch=master)](https://travis-ci.org/freshbitsweb/laravel-log-enhancer)
66

7-
# Laravel Log Enhancer (Laravel 5.6 to Laravel 5.8)
7+
# Laravel Log Enhancer (Laravel 5.6 to Laravel 6.0)
88
Laravel's logging system helps a lot for storing data as well as while troubleshooting some hidden bugs. The data related to the exception automatically gets logged whenever something goes wrong.
99

1010
Sometimes, we need more than just *stack trace* to debug the issue easily. The things like **request URL**, **request input data**, **session data**, etc. help us hunt down the exact cause quickly. That's what this *plug-and-play* Laravel package does for you :)
1111

12-
13-
**Note**: For Laravel 5.5, you may use [Slack Error Notifier](https://github.com/freshbitsweb/slack-error-notifier) package.
14-
1512
## Requirements
1613

17-
* PHP 7.1.3+
14+
* PHP 7.2+
1815
* Laravel 5.6+
1916

17+
**Notes**:
18+
- If you are still using PHP 7.1 and Laravel 5.\*, you may use v1.0.* of this package.
19+
20+
- For Laravel 5.5, you may use [Slack Error Notifier](https://github.com/freshbitsweb/slack-error-notifier) package.
21+
2022
## Installation
2123

2224
1) Install the package by running this command in your terminal/cmd:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "freshbitsweb/laravel-log-enhancer",
33
"description": "Make debugging easier by adding more data to your laravel logs",
44
"require": {
5-
"php": ">=7.1.3",
6-
"illuminate/support": "5.6.*|5.7.*|5.8.*",
7-
"monolog/monolog": "^1.23"
5+
"php": "^7.2",
6+
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
7+
"monolog/monolog": "^1.23|^2.0"
88
},
99
"require-dev": {
10-
"phpunit/phpunit": "^7.0",
11-
"orchestra/testbench": "3.6.*|3.7.*|3.8.*"
10+
"phpunit/phpunit": "^8.0",
11+
"orchestra/testbench": "3.9.*"
1212
},
1313
"license": "MIT",
1414
"authors": [

0 commit comments

Comments
 (0)