You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last released Laravel has updated his internal dependencies based on Symfony to the 5.* series, including the console.
As for this library, it still requires the 3.0 && 4.0 series, preventing to upgrade the framework.
For what I could see in the library, the only exception is the InvalidPrimeException, which extends from RangeException, which extends from RuntimeException, which extends from Exception, which at last implements the Throwable interface. Being that the only requirement (AFAIK), this can be satisfiable by just adding |^5.0 to the composer.json file under the symfony/console dependency.
Happy to PR it if you're busy
The text was updated successfully, but these errors were encountered:
The last released Laravel has updated his internal dependencies based on Symfony to the 5.* series, including the console.
As for this library, it still requires the 3.0 && 4.0 series, preventing to upgrade the framework.
For what I could see in the library, the only exception is the
InvalidPrimeException
, which extends fromRangeException
, which extends fromRuntimeException
, which extends fromException
, which at last implements theThrowable
interface. Being that the only requirement (AFAIK), this can be satisfiable by just adding|^5.0
to thecomposer.json
file under thesymfony/console
dependency.Happy to PR it if you're busy
The text was updated successfully, but these errors were encountered: