| {
    "name": "esi/simple_tpl",
    "description": "Simple TPL - A Simple Template Engine",
    "license": "GPL-3.0-or-later",
    "type": "library",
    "authors": [
        {
            "name": "Eric Sizemore",
            "email": "[email protected] ",
            "homepage": "https://www.secondversion.com/"
        }
    ],
    "support": {
        "issues": "https://github.com/ericsizemore/simple_tpl/issues",
        "forum": "https://github.com/ericsizemore/simple_tpl/discussions",
        "source": "https://github.com/ericsizemore/simple_tpl/tree/master",
        "security": "https://github.com/ericsizemore/simple_tpl/security/policy"
    },
    "require": {
        "php": "^8.1 <8.5"
    },
    "require-dev": {
        "phpstan/phpstan": "^1.11",
        "phpstan/phpstan-phpunit": "^1.4",
        "phpstan/phpstan-strict-rules": "^1.6",
        "phpunit/phpunit": "^10.5"
    },
    "minimum-stability": "dev",
    "autoload": {
        "psr-4": {
            "Esi\\SimpleTpl\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Esi\\SimpleTpl\\Tests\\": "tests/src/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    },
    "scripts": {
        "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
        "test": "phpunit --coverage-clover=build/logs/clover.xml --coverage-html=build/logs/coverage --display-deprecations --display-warnings --globals-backup"
    }
}
 |