79821563

Date: 2025-11-16 15:48:12
Score: 1.5
Natty:
Report link

What finally worked was adding this to the composer.json file:

{
"repositories": [
    {
        "type": "composer",
        "url": "https://repo.packagist.org",
        "options": {
            "ssl": {
                "verify_peer": false,
                "allow_self_signed": true,
                "cafile": "D:/xampp_7_4_33/apache/bin/curl-ca-bundle.crt",
                "capath": "D:/xampp_7_4_33/apache/bin"
            }
        }
    }
]
}

This solution was found in this post: Composer Curl error 60: SSL certificate problem: unable to get local issuer certificate (search for "Composer Specific Solutions").

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: guntersammet