Cant install backpack 6 on laravel 10 #777
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey @k-wiese I am not aware of such package It seems one of our requirements is not compatible with the requirements of the mentioned package. It requires As I understand, 4.0 still in development, at least from branch readme: https://github.com/doctrine/dbal/tree/4.0.x You can probably work around it by setting your Alternatively use version We can only think in adding support for 4.0 when it's released as a stable version, in fact the last release Let me know how it goes. Cheers |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hey @k-wiese I am not aware of such package
carbonphp/carbon-doctrine-types
.It seems one of our requirements is not compatible with the requirements of the mentioned package. It requires
doctrine/dbal
4.0 while we install 3.0, AFAIK is also the version Laravel uses: https://github.com/laravel/framework/blob/484e9c2c78637e3484681d7569a0e3f878dcd594/composer.json#L98As I understand, 4.0 still in development, at least from branch readme: https://github.com/doctrine/dbal/tree/4.0.x
You can probably work around it by setting your
composer.json
to acceptminimum-stability: dev
and trying to forcedoctrine/dbal: ^4.0
.Alternatively use version
^2.0
of that package: https://github.com/CarbonPHP…