fenom/composer.json

31 lines
695 B
JSON

{
"name": "fenom/fenom",
"type": "library",
"description": "Fenom - excellent template engine for PHP",
"keywords": ["fenom", "template", "templating", "templater", "php"],
"license": "BSD-3",
"authors": [
{
"name": "Ivan Shalganov",
"email": "a.cobest@gmail.com"
}
],
"require": {
"php": ">=5.4",
"ext-tokenizer": "*"
},
"require-dev": {
"phpunit/phpunit": ">=6.0",
"satooshi/php-coveralls": "*"
},
"autoload": {
"psr-4": {
"Fenom\\": "src/Fenom/"
},
"psr-0": {
"Fenom": "src/"
},
"classmap": ["src/"]
}
}