i have succesfully installed and setup laravel-horizon as per documentation
when i running this command php artisan horizon
it throws below error :
Symfony\Component\Debug\Exception\FatalThrowableError : Call to undefined function Laravel\Horizon\Console\pcntl_async_signals()
When i open http://127.0.0.1:8000/horizon/dashboard , horizon dashboard status always inactive
Im using XAMPP , PHP Version 7.3.0 , Laravel version 5.7
I have followed this link : https://github.com/laravel/horizon/issues/154#issuecomment-366712260
composer require ext-pcntl ext-posix
here is composer :
"require": {
"php": "^7.1.3",
"ext-pcntl": "^7.2",
"ext-posix": "^7.2",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.7.*",
"laravel/horizon": "^2.0",
"laravel/socialite": "^4.0",
"laravel/tinker": "^1.0",
"predis/predis": "^1.1",
},
I have search so many questions , but no luck ,
also tried composer update --ignore-platform-reqs
but still not working .
anyone please help me to run Laravel Horizon in my local system