Skip to content

Commit 678f01a

Browse files
committed
release: v1.7.0
1 parent d655c6d commit 678f01a

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ composer.phar
22
composer.lock
33
/vendor/
44
.phpunit.result.cache
5+
/.phpunit.cache/
56

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

CHANGELOG.md

+4
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.7.0] - 2024-05-21
8+
### Added
9+
- Support for Laravel 11.x
10+
711
## [1.6.0] - 2023-02-21
812
### Added
913
- Support for Laravel 10.x

README.md

+2-1
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 10.x)
7+
# Laravel Log Enhancer (Laravel 5.6 to Laravel 11.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+ | 11.x | v1.7.0 |
1920
| 8.1+ | 10.x | v1.6.0 |
2021
| 8.0+ | 9.x | v1.5.0 |
2122
| 8.0+ | 9.x | v1.4.0 |

phpunit.xml

+11-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
verbose="true"
7-
>
8-
<coverage>
9-
<include>
10-
<directory suffix=".php">src/</directory>
11-
</include>
12-
</coverage>
13-
<testsuites>
14-
<testsuite name="League Test Suite">
15-
<directory>tests</directory>
16-
</testsuite>
17-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
3+
<testsuites>
4+
<testsuite name="League Test Suite">
5+
<directory>tests</directory>
6+
</testsuite>
7+
</testsuites>
8+
<source>
9+
<include>
10+
<directory suffix=".php">src/</directory>
11+
</include>
12+
</source>
1813
</phpunit>

0 commit comments

Comments
 (0)