Skip to content

Commit 82da538

Browse files
committed
release: Add support for Laravel 8.x
1 parent 2256314 commit 82da538

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

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.3.0] - 2020-09-12
8+
### Added
9+
- Support for Laravel 8.x
10+
711
## [1.2.0] - 2020-03-04
812
### Added
913
- Support for Laravel 7.x

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@
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://plant.treeware.earth/freshbitsweb/laravel-log-enhancer)
77

8-
# Laravel Log Enhancer (Laravel 5.6+)
8+
# Laravel Log Enhancer (Laravel 5.6 to Laravel 8.x)
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
14-
15-
* PHP 7.2.5+
16-
* Laravel 5.6+
14+
| PHP | Laravel | Package |
15+
|--------|---------|---------|
16+
| 7.3+ | 8.x | v1.3.0 |
17+
| 7.2.5+ | 7.x | v1.2.0 |
18+
| <7.2.5 | 6.x | v1.1.0 |
19+
| <7.1 | 5.x | v1.0.* |
1720

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

2324
## Installation

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.2",
6-
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0",
7-
"monolog/monolog": "^1.23|^2.0"
5+
"php": "^7.3",
6+
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
7+
"monolog/monolog": "^1.23|^2.1.1"
88
},
99
"require-dev": {
10-
"phpunit/phpunit": "^8.5",
11-
"orchestra/testbench": "5.*.*"
10+
"phpunit/phpunit": "^9.3.9",
11+
"orchestra/testbench": "^6.0.0"
1212
},
1313
"license": "MIT",
1414
"authors": [

0 commit comments

Comments
 (0)