AntCMS/composer.json
Belle Aerni 1dc25e2d32 Move from php-markdown to commonmark
Better maintained, much more popular, supports GH style markdown.
Also added an emoji plugin for it so we don't have to maintain our own list of them.

Unfortunately, moving this does nearly double the size of AntCMS, but it's a worthwhile tradeoff
2023-01-08 22:01:05 -08:00

24 lines
555 B
JSON

{
"name": "belle/ant-cms",
"type": "project",
"description": "A simple CMS built with PHP and Markdown",
"minimum-stability": "stable",
"require": {
"symfony/yaml": "^6.0",
"php": ">=7.4",
"league/commonmark": "^2.3",
"elgigi/commonmark-emoji": "^2.0"
},
"authors": [
{
"name": "Belle Aerni",
"email": "belleaerni@gmail.com"
}
],
"config": {
"vendor-dir": "src/Vendor"
},
"require-dev": {
"phpstan/phpstan": "^1.9"
}
}