Laravel Artisan Hangs using Memory Until Freeze

后端 未结 2 809
予麋鹿
予麋鹿 2021-01-24 16:20

With Laravel 5.4 Artisan will not run and uses a lot of memory, it worked a long while before with the same versions (besides PHP 7.0.14 to 7.0.15 maybe?).

Probl

相关标签:
2条回答
  • 2021-01-24 16:55

    It's missing ::class I had the same problem, just like you, one little mistake.

    0 讨论(0)
  • 2021-01-24 17:01

    Did a new installation, and this is causing it:

    config.php/app

    $providers => [
    ...
    Laravel\Cashier\CashierServiceProvider
    ...
    ]
    

    from https://laravel.com/docs/5.4/billing

    I'm not sure why this is causing it. I have followed the instructions with no implementation (I cannot migrate without artisan running either. This is odd but fixes it for now.

    0 讨论(0)
提交回复
热议问题