1

I have installed Laravel using Hostinger Auto Installer. Now I am trying to install the Auth UI using this command: composer require laravel/ui:^2.4.

I also tried removing the version from the end of the command. It is showing:

Fatal error: Allowed memory size.

enter image description here

Please let me know how can I get rid of this issue.

matiaslauriti
  • 7,065
  • 4
  • 31
  • 43
  • Please share more details, like the current version of PHP or Composer (later versions work better than older). Also, keep in mind that you should never run `composer require` on any other system than your own development machine – Nico Haase Aug 30 '21 at 07:26

1 Answers1

0

Try this:

COMPOSER_MEMORY_LIMIT=-1 composer require laravel/ui:^2.4
Rouhollah Mazarei
  • 3,969
  • 1
  • 14
  • 20