Trait "Illuminate\Console\Prohibitable" not found
at vendor/nwidart/laravel-modules/src/Commands/BaseCommand.php:17
13▕ use Symfony\Component\Console\Output\OutputInterface;
14▕
15▕ use function Laravel\Prompts\multiselect;
16▕
➜ 17▕ abstract class BaseCommand extends Command implements PromptsForMissingInput
18▕ {
19▕ use ConfirmableTrait;
20▕ use Prohibitable;
Мне нужно установить зависимости nwidart/laravel-modules в мой новый проект Laravel 11. Когда я пытаюсь их установить, возвращается следующая ошибка: [code]Trait "Illuminate\Console\Prohibitable" not found
at vendor/nwidart/laravel-modules/src/Commands/BaseCommand.php:17 13▕ use Symfony\Component\Console\Output\OutputInterface; 14▕ 15▕ use function Laravel\Prompts\multiselect; 16▕ ➜ 17▕ abstract class BaseCommand extends Command implements PromptsForMissingInput 18▕ { 19▕ use ConfirmableTrait; 20▕ use Prohibitable; [/code] Как это исправить.