composer.json
{
"name": "infw/pug",
"description": "Pug template engine for InFw and Zend Expressive",
"keywords": [
"zend framework",
"expressive",
"infw",
"php-pug"
],
"type": "library",
"license": "MIT",
"require": {
"php": "^7.1",
"pug-php/pug": "^3.1",
"zendframework/zend-diactoros": "^1.7.1",
"zendframework/zend-expressive": "^3.0.0"
},
"require-dev": {
"phpspec/phpspec": "^3.0",
"phpunit/phpunit": "^5.7.21",
"phpstan/phpstan": "^0.9.2",
"squizlabs/php_codesniffer": "^2.3",
"leanphp/phpspec-code-coverage": "^3.0",
"zendframework/zend-component-installer": "^2.1",
"zendframework/zend-expressive-tooling": "^1.0"
},
"autoload": {
"psr-4": {
"InFw\\Pug\\": "src/InFw/Pug"
}
},
"scripts": {
"style-check": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"style-fix": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"inspect": "phpstan analyse -l 4 -c phpstan.neon src --ansi"
},
"extra": {
"zf": {
"config-provider": "InFw\\Pug\\ConfigProvider"
}
}
}