AntCMS/composer.json
Belle Aerni ecf94d36da Removed the keyword generator
It didn't really work, added a bunch to the overall file size, and computer-generated keywords just won't compare to human created ones, unless you're to use AI or a particularly advanced algorithm, which I feel is outside the scope of the project.

I've left the class in place, so if needed, it'll be really easy to add it back
2023-01-19 18:01:03 -08:00

35 lines
921 B
JSON

{
"name": "antcms/antcms",
"type": "project",
"license": "Apache-2.0",
"description": "A simple CMS built with PHP and Markdown",
"homepage": "https://antcms.org/",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/AntCMS-org/AntCMS/issues"
},
"require": {
"symfony/yaml": "^6.0",
"php": ">=8.0",
"league/commonmark": "^2.3",
"elgigi/commonmark-emoji": "^2.0",
"twig/twig": "^3.5",
"shapecode/twig-string-loader": "^1.1",
"embed/embed": "^4.4",
"nyholm/psr7": "^1.5"
},
"authors": [
{
"name": "Belle Aerni",
"email": "belleaerni@gmail.com"
}
],
"config": {
"vendor-dir": "src/Vendor"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15.4"
}
}