{
    "name": "duncan3dc/blade",
    "type": "library",
    "description": "Use Laravel Blade templates without the full Laravel framework",
    "keywords": ["laravel", "templating", "template", "views"],
    "homepage": "https://github.com/duncan3dc/blade",
    "license": "Apache-2.0",
    "authors": [{
        "name": "Craig Duncan",
        "email": "git@duncanc.co.uk",
        "homepage": "https://github.com/duncan3dc",
        "role": "Developer"
    }],
    "require": {
        "illuminate/contracts": "^6.0 || ^7.0",
        "illuminate/events": "^6.0 || ^7.0",
        "illuminate/filesystem": "^6.0 || ^7.0",
        "illuminate/view": "^6.0 || ^7.0",
        "php": "^7.3 || ^8.0"
    },
    "require-dev": {
        "duncan3dc/object-intruder": "^0.3.0 || ^1.0",
        "maglnet/composer-require-checker": "^2.0 || ^3.0",
        "mockery/mockery": "^1.4",
        "phpstan/phpstan": "^0.12.40",
        "phpstan/phpstan-mockery": "^0.12.5",
        "phpstan/phpstan-phpunit": "^0.12.11",
        "squizlabs/php_codesniffer": "^3.6",
        "phpunit/phpunit": "^8.3"
    },
    "autoload": {
        "psr-4": {"duncan3dc\\Laravel\\": "src/"}
    },
    "autoload-dev": {
        "psr-4": {"duncan3dc\\LaravelTests\\": "tests/"}
    },
    "scripts": {
        "test": [
            "vendor/bin/phpunit",
            "vendor/bin/composer-require-checker",
            "vendor/bin/phpstan analyse --level=max --configuration=phpstan-src.neon src",
            "vendor/bin/phpstan analyse --level=max --configuration=phpstan-tests.neon tests",
            "vendor/bin/phpcs --standard=phpcs.xml"
        ]
    }
}
