toc/composer.json

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

2014-12-30 18:53:32 +00:00
{
"name": "caseyamcl/toc",
"type": "library",
"description": "Simple Table-of-Contents Generator for PHP. Generates TOCs based off H1...H6 tags",
"keywords": ["table of contents", "toc"],
"homepage": "http://github.com/caseyamcl/toc",
"license": "MIT",
"authors":
[
{
"name": "Casey McLaughlin",
"email": "caseyamcl@gmail.com",
"homepage": "http://caseymclaughlin.com",
"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"
}
}