antonioribeiro / artisan-tool

Nova Artisan Tool
MIT License
34 stars 13 forks source link

Missing package commands #4

Open rickmacgillis opened 6 years ago

rickmacgillis commented 6 years ago

Package commands don't show up on the interface. Try installing Laravel Passport and you'll see that passport:client and the like don't show up.

rickmacgillis commented 6 years ago

Is this issue being worked on, or is there some kind of limitation that makes it infeasible/impossible to do?

pete001 commented 5 years ago

Add:

        $this->commands([
            ClientCommand::class,
        ]);

to the boot method in app/Providers/AppServiceProvider.php...

but this leads up to the next issue - the tool doesnt like URLs being sent through.

hopefully we can get that patched next.