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
By default using Laravel 8 and composer require tcg/voyager will require ^1.4 but get 1.x-dev. And no update is possible. Also it's impossible to require 1.4.2 latest release because
- tcg/voyager v1.4.2 requires illuminate/support ~6.0|~7.0 -> satisfiable by illuminate/support[v6.0.0, ..., 6.x-dev, v7.0.0, ..., 7.x-dev].
- Only one of these can be installed: illuminate/support[dev-master, v5.1.1, ..., 5.8.x-dev, v6.0.0, ..., 6.x-dev, v7.0.0, ..., 7.x-dev, v8.0.0, ..., 8.x-dev], laravel/framework[v8.12.0, ..., 8.x-dev]. laravel/framework replaces illuminate/support and thus cannot coexist with it.
In this situation Voyager 1.x-dev will place their seeds (after php artisan voyager:install ) into database/seeds directory and make it impossible to create new seeders with php artisan make:seeder because Laravel will put new v8 namespaced seeder into old seeds dir (they explicitly have that condition).
All this stuff pushes me to think that i'm doing something wrong or missing something simple.
How can i use Voyager v1.4.2 (where issue with seeders dir seems to be fixed) with L8?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
By default using Laravel 8 and
composer require tcg/voyager
will require^1.4
but get1.x-dev
. And no update is possible. Also it's impossible to require1.4.2
latest release becauseIn this situation Voyager
1.x-dev
will place their seeds (afterphp artisan voyager:install
) intodatabase/seeds
directory and make it impossible to create new seeders withphp artisan make:seeder
because Laravel will put new v8 namespaced seeder into old seeds dir (they explicitly have that condition).All this stuff pushes me to think that i'm doing something wrong or missing something simple.
How can i use Voyager v1.4.2 (where issue with seeders dir seems to be fixed) with L8?
Beta Was this translation helpful? Give feedback.
All reactions