skip to Main Content

I am using laravel 9.

when I write this command "composer require bonecms/laravel-captcha"

I got error given below

In GitDownloader.php line 77:

git was not found in your PATH, skipping source download

git was not found in your PATH, skipping source download

At the same time when I run this project I found error given below

Error
Class 'IgoshevCaptchaProvidersCaptchaServiceProvider' not found

wanted to use

bonecms/laravel-captcha

2

Answers


  1. You should use --prefer-dist for installation, Try:

    composer install --prefer-dist
    

    Alternatively you can try:

    apt-get install git
    composer install --prefer-dist
    

    And then:

    composer require bonecms/laravel-captcha
    
    Login or Signup to reply.
  2. If you have a similar error like:

    In GitDownloader.php line 82:
                                                                
      git was not found in your PATH, skipping source download
    

    Locate your php.ini configuration file.

    For example C:xamppphp look for the zip extension line and uncomment it (remove the semi-colon) behind it. It looks like extension=zip.
    That’s all

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search