I'am using Symfony and Laravel on same machine. I'am on developement, and I have no webserver, I use the local server of each of them.
For Symfony, that works :
$ cd /var/www/symfony
$ php bin/console server:start
[OK] Server listening on http://127.0.0.1:8000
For Laravel, that does not work :
$ cd /var/www/laravel
$ php artisan serve
Laravel development server started: <http://127.0.0.1:8000>
[Thu Oct 12 21:46:21 2017] Failed to listen on 127.0.0.1:8000
When I stop the Symfony, then the Laravel works. There is a conflict between the 2 tools.
I am obliged to have the 2 working, because there is a REST-API on my Lavavel site and my symfony site is a client of this API.
How can I run the 2 sites with local development server, without installing a webserver ?