Reputation: 11
PHP Parse error:
syntax error, unexpected '=' in /var/www/.../api/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php on line 156
I did a clean install of Lumen. I recently upgraded php to 7.3 but composer is still older.
Upvotes: 1
Views: 3492
Reputation: 772
That error seems to be related to a PHP version issue. So I suggest you to check php version used in the site which fires the error. Anyway you wish to update your local composer, try with this command in your terminal
composer self-update
Upvotes: 0