Skip to content

Commit ec0046f

Browse files
committed
release: Add support for Laravel 7.x
1 parent cab00a0 commit ec0046f

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ 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.2.0] - 2020-03-04
8+
### Added
9+
- Support for Laravel 7.x
10+
711
## [1.1.0] - 2019-09-04
812
### Added
9-
- Support for Laravel 6.0
13+
- Support for Laravel 6.x
1014

1115
## [1.0.6] - 2019-03-01
1216
### Added

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
[![Build Status](https://travis-ci.org/freshbitsweb/laravel-log-enhancer.svg?branch=master)](https://travis-ci.org/freshbitsweb/laravel-log-enhancer)
66
[![Buy us a tree](https://img.shields.io/badge/Buy%20me%20a%20tree-%F0%9F%8C%B3-lightgreen?style=flat-square)](https://offset.earth/treeware?gift-trees)
77

8-
# Laravel Log Enhancer (Laravel 5.6 to Laravel 6.0)
8+
# Laravel Log Enhancer (Laravel 5.6+)
99
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.
1010

1111
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 :)
1212

1313
## Requirements
1414

15-
* PHP 7.2+
15+
* PHP 7.2.5+
1616
* Laravel 5.6+
1717

1818
**Notes**:
19+
- If you are still using PHP <7.2.5 and Laravel 6.x, you may use v1.1.0 of this package.
1920
- If you are still using PHP 7.1 and Laravel 5.\*, you may use v1.0.* of this package.
20-
2121
- For Laravel 5.5, you may use [Slack Error Notifier](https://github.com/freshbitsweb/slack-error-notifier) package.
2222

2323
## Installation

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "Make debugging easier by adding more data to your laravel logs",
44
"require": {
55
"php": "^7.2",
6-
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
6+
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
77
"monolog/monolog": "^1.23|^2.0"
88
},
99
"require-dev": {
10-
"phpunit/phpunit": "^8.0",
11-
"orchestra/testbench": "3.9.*"
10+
"phpunit/phpunit": "^8.5",
11+
"orchestra/testbench": "5.*.*"
1212
},
1313
"license": "MIT",
1414
"authors": [

0 commit comments

Comments
 (0)