toc/composer.json

35 строки
763 B
JSON
Исходник Постоянная ссылка Обычный вид История

2014-12-30 18:53:32 +00:00
{
2015-02-04 10:22:00 +00:00
"name": "igorvbelousov/toc",
2014-12-30 18:53:32 +00:00
"type": "library",
"description": "Simple Table-of-Contents Generator for PHP. Generates TOCs based off H1...H6 tags",
"keywords": ["table of contents", "toc"],
2015-02-04 10:22:00 +00:00
"homepage": "https://github.com/IgorVBelousov/toc",
2014-12-30 18:53:32 +00:00
"license": "MIT",
"authors":
[
{
2015-02-04 10:22:00 +00:00
"name": "Igor V Belousov",
"email": "igor@belousovv.ru",
"homepage": "http://belousovv.ru",
2014-12-30 18:53:32 +00:00
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"TOC\\": ["src/", "tests/"]
}
},
"require": {
"php": ">=5.4",
2014-12-30 18:53:32 +00:00
"sunra/php-simple-html-dom-parser": "~1.5",
"cocur/slugify": "~1.0",
"knplabs/knp-menu": "~2.0"
2014-12-30 18:53:32 +00:00
},
"require-dev": {
"twig/twig": "~1.13",
"phpunit/phpunit": "~4.0"
2014-12-30 18:53:32 +00:00
}
}