AntCMS/composer.json

29 lines
696 B
JSON
Raw Normal View History

2023-01-06 04:01:00 +00:00
{
"name": "belle/ant-cms",
"type": "project",
2023-01-09 07:43:17 +00:00
"license": "Apache-2.0",
2023-01-06 04:01:00 +00:00
"description": "A simple CMS built with PHP and Markdown",
"minimum-stability": "stable",
"require": {
2023-01-07 00:16:11 +00:00
"symfony/yaml": "^6.0",
"php": ">=7.4",
"league/commonmark": "^2.3",
2023-01-09 20:50:11 +00:00
"elgigi/commonmark-emoji": "^2.0",
"twig/twig": "^3.5",
"shapecode/twig-string-loader": "^1.1"
2023-01-06 04:01:00 +00:00
},
"authors": [
{
"name": "Belle Aerni",
"email": "belleaerni@gmail.com"
}
],
"config": {
2023-01-06 07:43:31 +00:00
"vendor-dir": "src/Vendor"
2023-01-07 02:25:28 +00:00
},
"require-dev": {
2023-01-09 07:43:17 +00:00
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5"
2023-01-06 04:01:00 +00:00
}
2023-01-09 20:50:11 +00:00
}