Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/gmponos/monolog-slack/blob/master/LICENSE.md)
[![PHPPackages Rank](http://phppackages.org/p/gmponos/guzzle_logger/badge/rank.svg)](http://phppackages.org/p/gmponos/guzzle_logger)

This if a fork of original library located at https://github.com/gmponos/guzzle-log-middleware

This is a middleware for [guzzle](https://github.com/guzzle/guzzle) that will help you automatically log every request
and response using a PSR-3 logger.

Expand All @@ -16,7 +18,7 @@ The middleware is functional with version 6 of Guzzle.
Via Composer

``` bash
$ composer require gmponos/guzzle_logger
$ composer require alexsaab/guzzle_logger
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you revert these changes?

```

## Usage
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "gmponos/guzzle_logger",
"name": "alexsaab/guzzle_logger",
"description": "A Guzzle middleware to log request and responses automatically",
"keywords": [
"psr3",
Expand All @@ -8,11 +8,11 @@
"logging"
],
"license": "MIT",
"homepage": "https://github.com/gmponos/guzzle-log-middleware",
"homepage": "https://github.com/alexsaab/guzzle-log-middleware",
"authors": [
{
"name": "George Mponos",
"email": "gmponos@gmail.com"
"name": "Alex Agafonov",
"email": "awa77@mail.ru"
Copy link
Owner

@gmponos gmponos May 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you revert these changes?

same

}
],
"autoload": {
Expand All @@ -26,7 +26,7 @@
}
},
"require": {
"php": "^7.2",
"php": "^7.2 || ^8",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.1 || ^7.0.1",
"psr/log": "^1.1"
Expand Down