laravel-enso / enso

Laravel Vue SPA, Bulma themed. For demo login use `admin@laravel-enso.com` & `password` -
https://www.laravel-enso.com
MIT License
1.09k stars 278 forks source link

Error in Composer Install #112

Closed xerk closed 6 years ago

xerk commented 6 years ago
Problem 1
    - Installation request for laravel/horizon v1.3.1 -> satisfiable by laravel/horizon[v1.3.1].
    - laravel/horizon v1.3.1 requires ext-pcntl * -> the requested PHP extension pcntl is missing from your system.

  To enable extensions, verify that they are enabled in your .ini files:
    - C:\xampp\php\php.ini
  You can also run `php --ini` inside terminal to see which files are used by PHP in CLI mode.`

I got this error when i install composer composer install

heyner29 commented 6 years ago

Hi, I had the same problem in windows. My only solution was to make: composer install --ignore-platform-reqs So far I have not noticed any malfunctions. Sorry for my English, use the Google translator :)

aocneanu commented 6 years ago

@xerk , did you try @heyner29 's solution?

jeremykenedy commented 6 years ago

This error is very specific to the development environment's php configuration and not this project.

On a mac to move past this error you can run:

brew install php

The error is that pcntl is not enabled in the php.ini. This is also may be due to a newer version of php being needed on the system your are having issues with.

Check this out: https://stackoverflow.com/questions/34174511/how-to-install-php-extension-pcntl-on-my-mac-osx

In Windows it seems that the only solutions are to use a virtual machine as it does not look like xampp has a solution: see here : https://stackoverflow.com/questions/33036773/how-to-enable-pcntl-in-php-while-using-a-framework-like-symfony2/43157513

PHP docs show that it is the windows environment that is the cannot support the needed driver: http://php.net/manual/en/intro.pcntl.php

aocneanu commented 6 years ago

closing due to the inactivity of the OP

bhenrym commented 4 years ago

yarn build command does not work on windows

problem console

enso@ build C:\xampp\htdocs\enso-master\client rm -rf ../public/{js,themes,themes-rtl,images} && vue-cli-service build --no-clean --modern "rm" no se reconoce como un comando interno o externo,

heyner29 commented 4 years ago

Have you tried using a different console than CMD? Git Bash or Cmander alternatives

evgenia-lenti commented 3 years ago

Hi, I had the same problem in windows. My only solution was to make: composer install --ignore-platform-reqs So far I have not noticed any malfunctions. Sorry for my English, use the Google translator :)

Thank you so much! It worked for me!

ajitirto commented 2 years ago

thank you for this information