Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Full Compatibility with Monolog 3.6 #17

Closed
wants to merge 9 commits into from
Closed
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ composer.phar
/vendor/
/build/
*.cache
.DS_Store
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 MHCG LTD
Copyright (c) 2024 Rasso Hilber

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
21 changes: 13 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "mhcg/monolog-wp-cli",
"description": "Extension for Monolog to support outputting to WP-CLI (The WordPress command line interface) when running wp command lines.",
"name": "hirasso/monolog-wp-cli",
"description": "Extension for Monolog to support outputting to WP-CLI (The WordPress command line interface) when running wp commands.",
"version": "2.0.0",
"keywords": [
"log",
"logging",
Expand All @@ -11,18 +12,22 @@
"authors": [
{
"name": "Mark Heydon",
"email": "[email protected]",
"role": "Developer"
}
"email": "[email protected]"
},
{
"name": "Rasso Hilber",
"email": "[email protected]"
},
],
"type": "library",
"require": {
"php": "^7.3 | ^7.4 | ^8.0",
"monolog/monolog": "^2.5"
"php": "8.2",
"monolog/monolog": "^3.6"
},
"require-dev": {
"wp-cli/wp-cli": "^2.0",
"phpunit/phpunit": "^9.5"
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^7.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading