hendrikmaus/reynaldo

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "hmaus/reynaldo",
    "description": "Parse API Blueprint refract into a iterable PHP data structure for easier access",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Hendrik Maus",
            "email": "aidentailor@gmail.com"
        }
    ],
    "minimum-stability": "stable",
    "require": {
        "php": ">=7.0"
    },
    "require-dev": {
        "codeclimate/php-test-reporter": "^0.3.2",
        "hmaus/drafter-installer": "^1.0",
        "hmaus/drafter-php": "^5.0",
        "phpunit/phpunit": "^5.0",
        "symfony/var-dumper": "^3.1"
    },
    "autoload": {
        "psr-4": {
            "Hmaus\\Reynaldo\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Hmaus\\Reynaldo\\Tests\\": "tests"
        }
    },
    "config": {
        "sort-packages": true
    },
    "scripts": {
        "clean": "rm -rf vendor/ ext/ composer.lock",
        "test": "vendor/bin/phpunit",
        "quicktest": "vendor/bin/phpunit --no-coverage",
        "install-drafter": "Hmaus\\Drafter\\Installer::installDrafter"
    },
    "extra": {
        "drafter-installer-tag": "v3.2.7"
    }
}