laravel4 composer install got proc_open not available error

前端 未结 2 557
故里飘歌
故里飘歌 2021-01-11 15:03

Now I am trying to use composer to install my php package but I got this error message: $ composer install

Loading composer repositories with package informa         


        
2条回答
  •  佛祖请我去吃肉
    2021-01-11 15:24

    You should use php-cli to by-pass disable_functions temporarily.

    php -d "disable_functions=" /path/to/composer install
    

提交回复
热议问题