hosmelq / laravel-pulse-schedule

Laravel Pulse card that list all scheduled tasks.
MIT License
47 stars 3 forks source link

Laravel 11 support #3

Closed finagin closed 8 months ago

finagin commented 8 months ago
  1. Laravel 11 didn't have \App\Console\Kernel::class but if user create them \Illuminate\Contracts\Console\Kernel::class resolve actual implementation.
  2. $kernel->bootstrap(); will collect events not only from the kernel, but also from the file routes/console.php
  3. Append DeferrableProvider to ScheduleServiceProvider for optimize resources. Read more
  4. Append .gitattributes to exclude unnecessary files from the package delivery
hosmelq commented 8 months ago

Thank you. :)