imTigger / laravel-job-status

Add ability to track Job progress, status and result dispatched to Queue.
MIT License
407 stars 60 forks source link

Add automatic package discovery for Laravel 5.5 #3

Closed PixellUp closed 7 years ago

imTigger commented 7 years ago

Thank you for your contribution again! I didn't have time to try Laravel 5.5 yet. The "package discovery" feature automatically add Service Provider. Do we still need to run the migration to create the table?

PixellUp commented 7 years ago

Yes, we have to do php artisan migrate after successfully run composer require imtigger/laravel-job-status. In shortly package discovery feature removes the need to write providers and aliases when installing package and clear any providers or aliases left after a package is removed.

Here is some information to familiarize yourself

imTigger commented 7 years ago

Changed merged and released as v0.1.9 Thank you for contributing to this tiny project 👍

imTigger commented 7 years ago

I have slightly adjusted the README.md to avoid confusion.