Skip to content

Commit

Permalink
[Update] v2.0 Updated Monolog to v3 (#9)
Browse files Browse the repository at this point in the history
* updated possible monolog versions

* github ci

* updated version to 2.0.0 for BC break changes

* updated readme

* cleanup
  • Loading branch information
sinansoezen authored Sep 7, 2022
1 parent 9081335 commit 873510e
Show file tree
Hide file tree
Showing 7 changed files with 763 additions and 1,263 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
php-version: [ '7.4' ]
php-version: [ '8.1' ]

steps:
- name: Checkout code
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
| Version | Date | Comment |
|---------|------------|----------------------------------------------------------------------|
| 2.0.0 | 2022-09-07 | Updated Monolog to version 3 (BC break) |
| 1.3.0 | 2022-03-01 | Updates dependencies and possible Symfony versions |
| 1.2.0 | 2021-08-31 | Updates dependencies |
| 1.1.0 | 2020-08-06 | Added service definition for dependency injection |
| 1.0.0 | 2020-08-06 | Initial release |
| 1.0.0 | 2020-08-06 | Initial release |
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Symfony bundle which enriches exceptions with some additional information like t

* [PHP 7.4](http://php.net/releases/7_4_0.php) or greater
* [Symfony 4.4](https://symfony.com/roadmap/4.4), [Symfony 5.4](https://symfony.com/roadmap/5.4) or [Symfony 6.0](https://symfony.com/roadmap/6.0)
* [Monolog](https://packagist.org/packages/monolog/monolog) v2 for version 1.x, v3 for version 2.x

## Installation

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"prefer-stable": true,
"require": {
"php": ">=7.4",
"monolog/monolog": "^1.25 || ^2.0",
"monolog/monolog": "^2.0 || ^3.0",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.4",
"friendsofphp/php-cs-fixer": "^v3.11",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0"
},
Expand Down
Loading

0 comments on commit 873510e

Please sign in to comment.