在 composer.json 中写入新包时出错

Error while writing new package in composer.json

{
    "name": "marvel/xmen",
    "description": "Mutants saving the world for people who hate them",
    "keywprds": ["mutant", "superhero", "bald", "guy"],
    "homepage": "htp://marvel.com/mutants",
    "time": "1963-09-01",
    "license": "MIT",
    "authors": 
            [
        {
            "name": "Stan Lee"
            "email": "StanLee@gmail.com"
            "homepage": "http://marvel.com",
            "role": "engineer"  
        }

    ]              
}

您在 "authors" 数组中缺少逗号。应该是这样的:

{
    "name": "marvel/xmen",
    "description": "Mutants saving the world for people who hate them",
    "keywprds": ["mutant", "superhero", "bald", "guy"],
    "homepage": "htp://marvel.com/mutants",
    "time": "1963-09-01",
    "license": "MIT",
    "authors": 
            [
        {
            "name": "Stan Lee",
            "email": "StanLee@gmail.com",
            "homepage": "http://marvel.com",
            "role": "engineer"  
        }

    ]              

}