robotdance/php-json-schema

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "robotdance/php-json-schema",
    "description": "A library to validate a json schema.",
    "keywords": ["json", "schema"],
    "homepage": "https://github.com/robotdance/php-json-schema",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Bruno Prieto Reis",
            "email": "bruno.p.reis@gmail.com"
        },
        {
            "name": "Justin Rainbow",
            "email": "justin.rainbow@gmail.com"
        },
        {
            "name": "Igor Wiedler",
            "email": "igor@wiedler.ch"
        },
        {
            "name": "Robert Schönthal",
            "email": "seroscho@googlemail.com"
        }
    ],
    "repositories": [{
        "type": "package",
        "package": {
            "name": "json-schema/JSON-Schema-Test-Suite",
            "version": "1.2.0",
            "source": {
                "url": "https://github.com/json-schema/JSON-Schema-Test-Suite",
                "type": "git",
                "reference": "1.2.0"
            }
        }
    }],
    "require": {
        "php": ">=5.5.9",
        "robotdance/php-i18n": "0.0.8",
        "robotdance/php-app-config": "0.0.9"
    },
    "require-dev": {
        "json-schema/JSON-Schema-Test-Suite": "1.2.0",
        "phpunit/phpunit": "^4.8.22",
        "phpdocumentor/phpdocumentor": "~2",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "autoload": {
        "psr-4": { "JsonSchema\\": "src/JsonSchema/" }
    },
    "autoload-dev": {
        "psr-4": { "JsonSchema\\Tests\\": "tests/" }
    },
    "bin": ["bin/validate-json"],
    "extra": {
        "branch-alias": {
            "dev-master": "2.0.x-dev"
        }
    }
}