在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"  
        }
    ]              

}

相关内容

  • 没有找到相关文章

最新更新