After requiring the package (via dependency from laravel-adjacency-list) my test suite stopped working throwing me an issue about geometry column types. It seems having this package with grimzy/laravel-mysql-spatial conflicts because both try to set the singleton 'db.factory'.
$this->app->singleton('db.factory', function ($app) {
return new ConnectionFactory($app);
});
Any ideas how to solve this? I need both packages.
After requiring the package (via dependency from laravel-adjacency-list) my test suite stopped working throwing me an issue about geometry column types. It seems having this package with grimzy/laravel-mysql-spatial conflicts because both try to set the singleton 'db.factory'.
Any ideas how to solve this? I need both packages.