forked from typemill/typemill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.2 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "typemill/typemill",
"type": "project",
"description": "A crazy simple tool to create web-documentations and online manuals with markdown files.",
"keywords": ["documentations","manuals","flat-file","Markdown","php"],
"homepage": "https://typemill.net",
"license": "MIT",
"config": {
"vendor-dir": "system/vendor"
},
"require": {
"php": "^7.4|^8.0",
"slim/slim": "~3.7",
"twig/twig": "^2.0",
"slim/twig-view": "~2.3",
"slim/flash": "~0.4",
"slim/csrf": "~0.8",
"symfony/yaml": "~5.0",
"symfony/event-dispatcher": "~4.0",
"symfony/deprecation-contracts": "^2.1",
"symfony/finder": "^5.4",
"erusev/parsedown": "~1.4",
"erusev/parsedown-extra": "dev-master",
"jbroadway/urlify": "1.1.3",
"vlucas/valitron": "dev-master",
"laminas/laminas-permissions-acl": "^2.7",
"akrabat/proxy-detection-middleware": "^0.4.0",
"gregwar/captcha": "1.*"
},
"autoload": {
"psr-4": {
"Typemill\\": "system/",
"Plugins\\": "plugins/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}