framework/extensions/markdown/composer.json

38 lines
955 B
JSON
Raw Normal View History

2015-07-23 19:05:03 +08:00
{
2015-10-11 14:05:01 +08:00
"name": "flarum/markdown",
"description": "Allow posts to be formatted with Markdown.",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/markdown"
},
"require": {
"flarum/core": "^0.1.0-beta.3"
},
2015-07-23 19:05:03 +08:00
"autoload": {
"psr-4": {
"Flarum\\Markdown\\": "src/"
}
},
2015-10-11 14:05:01 +08:00
"extra": {
"flarum-extension": {
"title": "Markdown",
"icon": {
"image": "icon.svg",
"backgroundColor": "#000",
"backgroundSize": "100%",
"backgroundRepeat": "no-repeat",
"backgroundPosition": "center",
"color": "#fff"
}
}
2015-07-23 19:05:03 +08:00
}
}