aaronbullard/php-schema

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "aaronbullard/php-schema",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Aaron Bullard",
            "email": "aaron.bullard77@gmail.com"
        }
    ],
    "require": {
        "php": "^7.1",
        "justinrainbow/json-schema": "^5.2"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.3",
        "mockery/mockery": "^1.1"
    },
    "autoload": {
        "psr-4": {
            "PhpSchema\\": "src"
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests",
            "demo"
        ],
        "files": ["tests/helpers.php"]
    },
    "scripts": {
        "test": "./vendor/bin/phpunit --colors=always --coverage-html=./coverage --coverage-text=tests/summary.txt"
    }
}