fenom/composer.json

31 lines
695 B
JSON
Raw Permalink Normal View History

2013-01-25 18:36:16 +04:00
{
"name": "fenom/fenom",
2013-01-25 18:36:16 +04:00
"type": "library",
2013-07-29 14:53:21 +04:00
"description": "Fenom - excellent template engine for PHP",
2020-04-12 06:31:56 +03:00
"keywords": ["fenom", "template", "templating", "templater", "php"],
2013-04-28 11:33:36 +04:00
"license": "BSD-3",
2013-01-25 18:36:16 +04:00
"authors": [
{
"name": "Ivan Shalganov",
2013-02-22 09:42:49 +04:00
"email": "a.cobest@gmail.com"
2013-01-25 18:36:16 +04:00
}
],
"require": {
2020-04-12 06:31:56 +03:00
"php": ">=5.4",
2013-01-25 18:36:16 +04:00
"ext-tokenizer": "*"
},
"require-dev": {
2020-04-12 06:31:56 +03:00
"phpunit/phpunit": ">=6.0",
2016-06-09 18:05:22 +03:00
"satooshi/php-coveralls": "*"
2013-01-25 18:36:16 +04:00
},
"autoload": {
2020-04-12 07:48:15 +03:00
"psr-4": {
"Fenom\\": "src/Fenom/"
},
"psr-0": {
"Fenom": "src/"
},
"classmap": ["src/"]
2013-01-25 18:36:16 +04:00
}
2013-02-22 09:42:49 +04:00
}