curl error 60 while downloading https://packagist.laravel-china.org/packages.json: Peer‘s Certifica

Error when composer update

  [Composer\Downloader\TransportException]  

 curl error 60 while downloading https://packagist.laravel-china.org/packages.json: Peer's Certificate has expired. 

Very simple, open the composer.json file

Put

"repositories": {
        "packagist": {
            "type": "composer",
            "url": "https://packagist.laravel-china.org"
        }
    }

Replace with

"repositories": {
        "packagist": {
            "type": "composer",
            "url": "https://mirrors.aliyun.com/composer/"
        }
    }
马上解决

Guess you like

Origin blog.csdn.net/chendongpu/article/details/115032694