fenom/composer.json

28 lines
678 B
JSON
Raw Normal View History

2013-01-25 18:36:16 +04:00
{
2013-06-28 11:53:53 +04:00
"name": "bzick/fenom",
2013-01-25 18:36:16 +04:00
"type": "library",
2013-06-28 11:53:53 +04:00
"description": "Fenom - fast template engine for PHP",
"homepage": "http://bzick.github.io/fenom/",
2013-06-28 11:56:54 +04:00
"keywords": ["fenom", "template", "templating", "cytro"],
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": {
2013-02-08 14:52:28 +04:00
"php": ">=5.3.0",
2013-01-25 18:36:16 +04:00
"ext-tokenizer": "*"
},
"require-dev": {
2013-01-25 19:13:33 +04:00
"phpunit/phpunit": "3.7.*",
"smarty/smarty": "3.*",
2013-03-14 22:40:31 +04:00
"twig/twig": "1.*"
2013-01-25 18:36:16 +04:00
},
"autoload": {
2013-06-28 11:53:53 +04:00
"psr-0": { "Fenom\\": "src/" },
"classmap": [ "src/Fenom.php" ]
2013-01-25 18:36:16 +04:00
}
2013-02-22 09:42:49 +04:00
}