younishd/endobox

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "younishd/endobox",
    "description": "minimal template engine.",
    "type": "library",
    "keywords": ["template", "engine", "markdown", "php"],
    "homepage": "https://github.com/younishd/endobox",
    "license": "MIT",
    "authors":
    [
        {
            "name": "Younis Bensalah",
            "email": "younis.bensalah@gmail.com",
            "homepage": "https://younishd.fr"
        }
    ],
    "require":
    {
        "php": "^7.0",
        "erusev/parsedown": "^1.6"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.5"
    },
    "autoload":
    {
        "psr-4": {"endobox\\": "src/endobox/"}
    },
    "scripts":
    {
        "test": "phpunit --bootstrap vendor/autoload.php tests"
    }
}