Issue
I've noticed some errors this morning trying to update composer in Laravel 4.2
Error Output: PHP Fatal error: Class 'Illuminate\Foundation\Console\ConsoleMakeCommand' n
ot found in /usr/local/var/www/avionerd/vendor/indatus/dispatcher/src/Indatus/Dispatcher/C
ommands/Make.php on line 21
What is wrong, and how do I fix it?
Solution
I ran into the same problem.
Make sure that you reference the latest release of dispatcher in your composer.json file (instead of dev-master):
"indatus/dispatcher": "1.*"
Then remove your vendor/ directory and do a composer update again. That's what worked for me.
Answered By - Gijs
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.