1
0
mirror of https://github.com/suk-ws/ph-Bookshelf.git synced 2024-12-05 09:26:52 +08:00
ph-Bookshelf/composer.json
Eyre_S e8fe17b673
使用 composer, markdown 解析器切换为 commonmark。添加脚注&任务表的 bread-card 样式。
- 使用 composer
  - 声明 php8, ext-xml, ext-mbstring
  - 添加了 league/commonmark>=2.3.8
- 删除了 /lib 文件夹 (以及 parsedown 依赖)
- 抽象化 md 解析代码同时 md 解析器换为 commonmark
  - 使用 commonmark 规范
    + gfm - disallowed html
    + attributes, footnote, description list
- 修改 readme
2023-01-24 19:08:15 +08:00

20 lines
428 B
JSON

{
"name": "suk-ws/ph-bookshelf",
"description": "一个简单简洁(?)的文档书架实现。",
"keywords": ["website", "documentation-tool", "markdown"],
"minimum-stability": "alpha",
"type": "website",
"license": "MIT",
"authors": [
{
"name": "A.C.Sukazyo Eyre",
"email": "email@example.com"
}
],
"require": {
"php": ">=8.0",
"ext-xml": "*",
"ext-mbstring": "*",
"league/commonmark": ">=2.3.8"
}
}