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
once observed that the package doesn't support Laravel v11, I quickly tried to align that by forking the package and modifying it's dependencies like follows:
hi guys,
once observed that the package doesn't support Laravel v11, I quickly tried to align that by forking the package and modifying it's dependencies like follows:
composer.json
this made me possible to install my fork into my Laravel application.
next, I faced the fatal error during package auto-discover of
composer update
command:the thing is L11 removed several DBAL methods: https://laravel.com/docs/11.x/upgrade#doctrine-dbal-removal
under the hood, the package tries to detect the DB platform here and register geo specific types:
laravel-mysql-spatial/src/MysqlConnection.php
Line 29 in 2ca9f2f
this method doesn't exist in L11. unfortunately, this was a breaking change for the package.
I'll try to look for a workaround.
please feel free to share your experience if you also tried to make it work in L11.
The text was updated successfully, but these errors were encountered: