Hi all, I can’t find file mentioned in development setup advices:
Install the external dependencies with Composer. Your local machine is unlikely to have the necessary dependencies to install the packages, hence the --ignore switch.
php composer.phar install --ignore-platform-reqs
Any idea?
Thankyou in advance, Andrea
Composer is a separate PHP application which you can get from here: https://getcomposer.org/download/
Ok, Dan. Solved changing with this command:
composer install --ignore-platform-reqs
Great - that is absolutely fine (you are using a globally installed composer instead of a phar file - which is fine)
Many thanks Dan!