MInor errors in the README composer.json example

Issue #5 resolved
Jeff de Wit created an issue

There are a handful of quotes and a closing brace missing from the example composer.json. Nothing an IDE/composer validate wouldn't be able to pick out, though a bit difficult to spot if you don't really know what to look for exactly.

A fixed version would be this:

{
    "name": "dudley/dudley",
    "description": "A WordPress plugin framework for installing reusable site theme modules.",
    "type": "wordpress-plugin",
    "authors": [
        {
            "name": "Jeremy Ward",
            "email": "jeremy@jmichaelward.com",
            "role": "Lead Developer"
        },
        {
            "name": "3five, Inc.",
            "email": "wordpress@3five.com",
            "role": "Sponsor"
        },
        {
            "name": "WebDevStudios",
            "role": "Sponsor"
        }
    ],
    "autoload": {
        "psr-4": {
            "Dudley\\Patterns\\": "src/"
        }
    },
    "minimum-stability": "dev",
    "require": {
        "dudley/banner": "*",
        "dudley/social-media-accounts": "*"
    }
}

Comments (1)

  1. Log in to comment