LightWiki/composer.json
2024-03-08 10:30:13 +01:00

21 lines
377 B
JSON

{
"name": "codespace/wiki",
"description": "Simple documentation/wiki framework",
"autoload": {
"psr-4": {
"CodeSpace\\Wiki\\": "src/"
}
},
"scripts": {
"dev" : [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8000 -t public"
]
},
"require": {
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.8.1",
"twig/twig": "^3.8"
}
}