This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Description
To run the websocket server the below command
php artisan websocket:serve
this started to default on 6001 port
the port number can be changed by passing the port parameter value
php artisan websocket:serve --port=15001
but it's fixed port
I want to change the port number should pick from the .env file
in .env set port is 15001 then
php artisan websocket:serve
will run on 15001 port instead of 6001
is anyone know about this?
Any help on this is appreciated