hi, is there any way to configure laragon so that by configuring virtual hosts; can run more than one version of php at the same time, for example:
vhost1.me == 5.6.1
vhost2.me == 7.2
vhost3.me == 7.4
vhost4.me == 8.2
ignoring the option that can be changed with a click. I need to see the same development with two versions of php running at the same time since; In 5.6.1 I have an api and in 7.2 and 7.4 a development that consumes it and I am migrating these last two to 8.0
I have seen file settings httpd-vhosts.conf:
<Directory "C:\laragon\my_old_project1">
<FilesMatch ".php$">
SetHandler application/x-httpd-php56-cgi
</FilesMatch>
</Directory>
<Directory "C:\laragon\my_old_project2">
<FilesMatch ".php$">
SetHandler application/x-httpd-php56-cgi
</FilesMatch>
</Directory>
but I can't get it to work ... mainly this I can't find:
SetEnv PHPRC "\path\to\xampp\php"