Skip to content

Commit 873510e

Browse files
authored
[Update] v2.0 Updated Monolog to v3 (#9)
* updated possible monolog versions * github ci * updated version to 2.0.0 for BC break changes * updated readme * cleanup
1 parent 9081335 commit 873510e

File tree

7 files changed

+763
-1263
lines changed

7 files changed

+763
-1263
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php-version: [ '7.4' ]
15+
php-version: [ '8.1' ]
1616

1717
steps:
1818
- name: Checkout code

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
| Version | Date | Comment |
22
|---------|------------|----------------------------------------------------------------------|
3+
| 2.0.0 | 2022-09-07 | Updated Monolog to version 3 (BC break) |
34
| 1.3.0 | 2022-03-01 | Updates dependencies and possible Symfony versions |
45
| 1.2.0 | 2021-08-31 | Updates dependencies |
56
| 1.1.0 | 2020-08-06 | Added service definition for dependency injection |
6-
| 1.0.0 | 2020-08-06 | Initial release |
7+
| 1.0.0 | 2020-08-06 | Initial release |

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Symfony bundle which enriches exceptions with some additional information like t
1010

1111
* [PHP 7.4](http://php.net/releases/7_4_0.php) or greater
1212
* [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)
13+
* [Monolog](https://packagist.org/packages/monolog/monolog) v2 for version 1.x, v3 for version 2.x
1314

1415
## Installation
1516

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
"prefer-stable": true,
1919
"require": {
2020
"php": ">=7.4",
21-
"monolog/monolog": "^1.25 || ^2.0",
21+
"monolog/monolog": "^2.0 || ^3.0",
2222
"symfony/config": "^4.4 || ^5.4 || ^6.0",
2323
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
2424
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
2525
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.0"
2626
},
2727
"require-dev": {
28-
"friendsofphp/php-cs-fixer": "^v3.4",
28+
"friendsofphp/php-cs-fixer": "^v3.11",
2929
"phpunit/phpunit": "^9.5",
3030
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0"
3131
},

0 commit comments

Comments
 (0)