framework/extensions/emoji/composer.json

38 lines
905 B
JSON
Raw Normal View History

2015-07-23 20:36:02 +09:30
{
2015-12-29 12:55:05 +10:30
"name": "flarum/flarum-ext-emoji",
2015-10-11 17:02:19 +10:30
"description": "Convert text and unicode emoji into Twemoji.",
"type": "flarum-extension",
2015-10-12 15:00:15 +10:30
"keywords": ["formatting"],
2015-10-11 17:02:19 +10:30
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
2015-12-29 12:55:05 +10:30
"source": "https://github.com/flarum/flarum-ext-emoji"
2015-10-11 17:02:19 +10:30
},
"require": {
"flarum/core": "^0.1.0-beta.3"
},
2015-07-23 20:36:02 +09:30
"autoload": {
"psr-4": {
"Flarum\\Emoji\\": "src/"
}
},
2015-10-11 17:02:19 +10:30
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
},
2015-10-11 17:02:19 +10:30
"flarum-extension": {
"title": "Emoji",
"icon": {
"image": "icon.svg",
"backgroundColor": "#FECC4D"
}
}
2015-07-23 20:36:02 +09:30
}
}