toc/composer.json

34 строки
722 B
JSON

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