osx - Getting error "Unable to determine linked PHP" while Laravel Valet install on MAC -
take @ -
this question different possible duplicate - laravel valet linked php error
because guy has following result -
$ php /usr/local/cellar/php70/7.0.6/bin/php
while had
$ php /usr/local/bin/php
and because followed stack overflow answer
/usr/local/opt/php71/bin/php
the problem seems originated laravel valets ability find php @ location expects or having multiple php versions choose from. not sure guess. , not know how fix this.
i had same issue today. me solution run composer global update
update global packages latest version of laravel.
this required because of change order of arguments collection methods in 5.3: https://github.com/laravel/framework/blob/5.5/src/illuminate/support/arr.php#l175 , change way valet validates version of php installed: https://github.com/laravel/valet/commit/84ade711b61fd79ead98e08b5186704f68b4f993
Comments
Post a Comment