GithubHelp home page GithubHelp logo

dmitry-ivanov / laravel-console-logger Goto Github PK

View Code? Open in Web Editor NEW
86.0 86.0 10.0 2.21 MB

Logging and Notifications for Laravel Console Commands.

License: MIT License

PHP 100.00%
command console email-notifications error-handling guzzle-middleware laravel laravel-package logger notifications

laravel-console-logger's Introduction

Hi, I'm Dmitry Ivanov! Nice to meet you! I'm a Software Engineer, Laravel Developer, Open-Source Developer, Problem Solver, and Constant Learner.

laravel-console-logger's People

Contributors

dmitry-ivanov avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

laravel-console-logger's Issues

Your requirements could not be resolved to an installable set of packages.

composer create-project laravel/laravel example-app
cd exemple-app
composer require illuminated/console-logger

Give me this error:

Using version ^8.2 for illuminated/console-logger
./composer.json has been updated
Running composer update illuminated/console-logger
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - illuminated/console-logger[8.2.0, ..., 8.x-dev] require psr/log ^1.0 -> found psr/log[1.0.0, ..., 1.1.4] but the package is fixed to 2.0.0 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
    - Root composer.json requires illuminated/console-logger ^8.2 -> satisfiable by illuminated/console-logger[8.2.0, 8.x-dev].

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

Installation failed, reverting ./composer.json and ./composer.lock to their original content.

PHP 8.0.3
Laravel Framework 8.64.0

Compatibility issue with Laravel's class optimizer

Hey,

Is there a reason we need this line in composer.json?
https://github.com/dmitry-ivanov/laravel-console-logger/blob/master/composer.json#L30

I'm using this in a Laravel 5.2 project and if I use the php artisan optimize command I get the following error:
PHP Fatal error: Cannot declare class Symfony\Component\Finder\Glob, because the name is already in use in /code/bootstrap/cache/compiled.php on line 17279

However if I remove that line from composer.json and rerun the optimize command everything works as expected.

Support for Laravel 10

Hello,

Firstly, I wanted to express how much I appreciate your package. It has been incredibly useful for my projects. The functionality and ease of use it offers have saved me a lot of time and effort.

Sadly, due to my current commitments, I'm unable to create a PR at the moment. However, I noticed that the package could benefit from support for Laravel 10.

I was hoping you might consider adding this support in a future update. It would be immensely beneficial for the community, and I'm sure many others would appreciate it as much as I would.

Thank you for your hard work and dedication to this package. I look forward to seeing its continued growth and evolution.

Warm regards

Sentry doesn't send events from Loggable

Versions:

  • Package Version: 6.0.0
  • PHP Version: 7.2.24

Description:

When I use Loggable I don't send events to https://sentry.io on Exception.
...

Steps to reproduce:

  1. Create console command. Add use Loggable in it.
  2. Install Sentry: Create project in sentry.io, install sentry package, define SENTRY_LARAVEL_DSN and etc.
  3. try to throw new Exception. You will not see this event in Sentry's dashboard
  4. Remove use Loggable and try to throw new Exception. You will see this event

Lumen compatibility

Hi,

I'm trying to test this package on Lumen 5.7 but it throws the exception:

In MonologFormatter.php line 8:
 
  [ErrorException]
  Declaration of Illuminated\Console\Loggable\FileChannel\MonologFormatter::normalize($data) should be compatible with Monolog\Formatter\NormalizerF
  ormatter::normalize($data, $depth = 0)
 
 
Exception trace:
 Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}() at D:\desarrollos\bctpv\bcServer\vendor\illuminated\console-logger\src\Loggable\FileChan
nel\MonologFormatter.php:8
 include() at D:\desarrollos\bctpv\bcServer\vendor\composer\ClassLoader.php:444
 Composer\Autoload\includeFile() at D:\desarrollos\bctpv\bcServer\vendor\composer\ClassLoader.php:322
 Composer\Autoload\ClassLoader->loadClass() at n/a:n/a

Maybe Lumen is using a different Monolog version with a different normalize() declaration.

Also, this package extends Illuminate\Foundation\Exceptions\Handler that doesn't exists in Lumen. Lumen and Laravel both have a app\Exceptions\Handler.php that might be usable on Illuminated\Console\Exceptions\ExceptionHandler.php and would solve this issue.

Making these two changes on my test app did work (I've done a quick tests on Lumen only)

ERROR Class 'App\Exceptions\Handler' not found

Thanks for yours effort.

I found the error below

PHP Fatal error: Class 'App\Exceptions\Handler' not found in C:\testprojecct\vendor\illuminated\console-
logger\src\ExceptionHandler.php on line 8
PHP Fatal error: Uncaught ReflectionException: Class Illuminated\Console\Except
ionHandler does not exist in C:testprojecct\vendor\laravel\framework\src\Illuminate\Container\Container.

My app name is Test so the correct namespace is 'Test\Exceptions\Handler'.

Please advice.

ERROR: $log must be protected

PHP Fatal error:  Access level to Illuminated\Console\ExceptionHandler::$log must be protected (as in class Illuminate\Foundation\Exceptions\Handler) or weaker
in C:\a\vendor\illuminated\console-logger\src\ExceptionHandler.php on line 8
PHP Fatal error:  Uncaught ReflectionException: Class Illuminated\Console\Except
ionHandler does not exist in C:\a\vendor\laravel\framework\src\Illuminate\Container\Container.
php:734

using laravel-console-logger version 1.1.7 and laravel 5.2.45 then I tried to change to protected $log; and run command again. It shows error below:

PHP Fatal error:  Uncaught TypeError: Argument 1 passed to Illuminate\Foundation
\Exceptions\Handler::__construct() must implement interface Psr\Log\LoggerInterf
ace, instance of Illuminate\Foundation\Application given, called in C:\a\vendor\illuminated\co
nsole-logger\src\ExceptionHandler.php on line 17 and defined in C:\a\vendor\laravel\framework\
src\Illuminate\Foundation\Exceptions\Handler.php:43

Additional info when using version 1.0.12 the error has gone away.

Please advice.

Thanks you.

Exception handler conflicts with existing exception handler

When creating a command implementation using the LoggableTrait, the exception handler is overwritten by default.

This can cause trouble with using external exception handlers (such as Sentry), because it will prevent errors from being reported .

Can't install on 5.6

Versions:

  • Package Version: 5.6.*
  • PHP Version: 7.3.14

php ../composer.phar require "illuminated/console-logger:5.6.*"
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

Problem 1
- Conclusion: don't install illuminated/console-logger 5.6.3
- Conclusion: don't install illuminated/console-logger 5.6.2
- Conclusion: don't install illuminated/console-logger 5.6.1
- Conclusion: don't install illuminated/console-logger 5.6.0
- Conclusion: remove symfony/filesystem v5.0.8
- Installation request for illuminated/console-logger 5.6.* -> satisfiable by illuminated/console-logger[5.6.0, 5.6.1, 5.6.2, 5.6.3, 5.6.x-dev].
- Conclusion: don't install symfony/filesystem v5.0.8
- illuminated/console-logger 5.6.x-dev requires illuminated/helper-functions 5.6.* -> satisfiable by illuminated/helper-functions[5.6.0, 5.6.1, 5.6.2, 5.6.3, 5.6.4, 5.6.5, 5.6.x-dev].
- illuminated/helper-functions 5.6.0 requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10,
v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.
0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9,
v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- illuminated/helper-functions 5.6.1 requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10,
v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.
0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9,
v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- illuminated/helper-functions 5.6.2 requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10,
v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.
0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9,
v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- illuminated/helper-functions 5.6.3 requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10,
v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.
0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9,
v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- illuminated/helper-functions 5.6.4 requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10,
v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.
0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9,
v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- illuminated/helper-functions 5.6.5 requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10,
v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.
0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9,
v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- illuminated/helper-functions 5.6.x-dev requires symfony/filesystem ^4.0 -> satisfiable by symfony/filesystem[4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.
10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v
4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.
3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8].
- Can only install one of: symfony/filesystem[4.0.x-dev, v5.0.8].
- Can only install one of: symfony/filesystem[4.1.x-dev, v5.0.8].
- Can only install one of: symfony/filesystem[4.2.x-dev, v5.0.8].
- Can only install one of: symfony/filesystem[4.3.x-dev, v5.0.8].
- Can only install one of: symfony/filesystem[4.4.x-dev, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0-BETA1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0-BETA2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0-BETA3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0-BETA4, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0-RC1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.0-RC2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.10, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.11, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.12, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.13, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.14, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.15, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.4, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.5, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.6, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.7, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.8, v5.0.8].
- Can only install one of: symfony/filesystem[v4.0.9, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.0, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.0-BETA1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.0-BETA2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.0-BETA3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.10, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.11, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.12, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.4, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.5, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.6, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.7, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.8, v5.0.8].
- Can only install one of: symfony/filesystem[v4.1.9, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.0, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.0-BETA1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.0-BETA2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.0-RC1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.10, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.11, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.12, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.4, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.5, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.6, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.7, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.8, v5.0.8].
- Can only install one of: symfony/filesystem[v4.2.9, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.0, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.0-BETA1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.0-BETA2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.0-RC1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.10, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.11, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.4, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.5, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.6, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.7, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.8, v5.0.8].
- Can only install one of: symfony/filesystem[v4.3.9, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.0, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.0-BETA1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.0-BETA2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.0-RC1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.1, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.2, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.3, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.4, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.5, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.6, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.7, v5.0.8].
- Can only install one of: symfony/filesystem[v4.4.8, v5.0.8].
- Installation request for symfony/filesystem (locked at v5.0.8) -> satisfiable by symfony/filesystem[v5.0.8].

Installation failed, reverting ./composer.json to its original content.

5.6 incompatible with monolog > 1.23

Versions:

  • Package Version: 5.6.*

Description:

Monologer changed the signature of Monolog\Formatter\NormalizerFormatter::normalize in 1.24 which is incompatable (like first portion of #6 ) installing specifically to 1.23 makes it work again.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.