php -v
: Show CLI PHP versionphp -m
: Show CLI PHP modulesphp -i | grep memory_limit
: Show your actual CLI PHP memory limitcomposer -v
: Show your actual composer versionnode -v
: Show you actual Node versionnpm -v
: Show you actual NPM versionphpinfo.php
file with this content:phpinfo.php
page then you can see all information about your actual PHP setup. Check if they also match with the requirements.memory_limit
512M minimummax_execution_time
30 seconds minimumdevelopment
, we now navigate into it:shopware/platform
in the version dev-master
as requirement in its composer.json
file. This always corresponds to the latest commit on the master branch on GitHub. If you want to use a specific version change dev-master
to 6.1
for example. Now Shopware 6.1 will be installed instead of the latest master state.platform
code manually. Before doing so, remove the existing platform directory.vendor/shopware/platform
directory, where you don't want to change any code. There's a good reason why many IDEs try to prevent you from changing code in the vendor
directory.