AntCMS/composer.json

37 lines
980 B
JSON
Raw Normal View History

2023-01-06 04:01:00 +00:00
{
2023-01-12 05:09:36 +00:00
"name": "antcms/antcms",
2023-01-06 04:01:00 +00:00
"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",
2023-01-12 05:09:36 +00:00
"homepage": "https://antcms.org/",
2023-01-06 04:01:00 +00:00
"minimum-stability": "stable",
2023-01-12 05:09:36 +00:00
"support": {
"issues": "https://github.com/AntCMS-org/AntCMS/issues"
},
2023-01-06 04:01:00 +00:00
"require": {
2023-01-07 00:16:11 +00:00
"symfony/yaml": "^6.0",
"php": ">=8.0",
"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-14 10:44:13 +00:00
"embed/embed": "^4.4",
2023-02-25 12:32:07 +00:00
"nyholm/psr7": "^1.5",
"simonvomeyser/commonmark-ext-lazy-image": "^2.0"
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",
2023-01-12 08:20:13 +00:00
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15.4"
2023-01-06 04:01:00 +00:00
}
2023-01-09 20:50:11 +00:00
}