hendrikmaus/drafter-php

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "hmaus/drafter-php",
    "description": "PHP wrapper around drafter binary",
    "license": "MIT",
    "authors": [
        {
            "name": "Hendrik Maus",
            "email": "aidentailor@gmail.com"
        }
    ],
    "minimum-stability": "stable",
    "require": {
        "php": ">=5.6",
        "symfony/process": "^4|^5"
    },
    "require-dev": {
        "phpunit/phpunit": "^5.0",
        "consolidation/robo": "^1.2.2",
        "codeclimate/php-test-reporter": "^0.3",
        "hmaus/drafter-installer": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "Hmaus\\DrafterPhp\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Hmaus\\DrafterPhp\\Tests\\": "tests"
        }
    },
    "extra": {
        "drafter-installer-tag": "v4.0.2"
    },
    "scripts": {
        "clean": "rm -rf vendor/ ext/ composer.lock",
        "test": "vendor/bin/phpunit",
        "quicktest": "vendor/bin/phpunit --no-coverage",
        "install-drafter": "Hmaus\\Drafter\\Installer::installDrafter",
        "post-install-cmd": [
            "@install-drafter"
        ],
        "post-update-cmd": [
            "@install-drafter"
        ]
    }
}