Skip to content

Commit 4cdd38f

Browse files
committed
Package release for support of Laravel v12
1 parent 678f01a commit 4cdd38f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
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+
## [2.0.0] - 2025-02-26
8+
### Added
9+
- Support for Laravel 12.x
10+
711
## [1.7.0] - 2024-05-21
812
### Added
913
- Support for Laravel 11.x

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![StyleCI](https://styleci.io/repos/126970369/shield?branch=master)](https://styleci.io/repos/126970369)
55
[![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)
66

7-
# Laravel Log Enhancer (Laravel 5.6 to Laravel 11.x)
7+
# Laravel Log Enhancer (Laravel 5.6 to Laravel 12.x)
88
Laravel logs help all of us debug issues. We value them the most in production. But, the contextual data of the request is not logged by default. 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 :)
99

1010
## Before
@@ -16,6 +16,7 @@ Laravel logs help all of us debug issues. We value them the most in production.
1616
## Requirements
1717
| PHP | Laravel | Package |
1818
|--------|---------|---------|
19+
| 8.2+ | 12.x | v2.0.0 |
1920
| 8.2+ | 11.x | v1.7.0 |
2021
| 8.1+ | 10.x | v1.6.0 |
2122
| 8.0+ | 9.x | v1.5.0 |

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.3|^8.0",
6-
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
6+
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
77
"monolog/monolog": "^1.23|^2.1.1|^3.2"
88
},
99
"require-dev": {
10-
"phpunit/phpunit": "^9.3.9|^10.5",
11-
"orchestra/testbench": "^6.23.0|^7.0.0|^8.0|^9.0"
10+
"phpunit/phpunit": "^9.3.9|^10.5|^11.0",
11+
"orchestra/testbench": "^6.23.0|^7.0.0|^8.0|^9.0|^10.0"
1212
},
1313
"license": "MIT",
1414
"authors": [

0 commit comments

Comments
 (0)