1
0
mirror of https://github.com/flarum/core.git synced 2025-08-30 19:40:02 +02:00

Update for composer branch

This commit is contained in:
Toby Zerner
2015-10-13 12:29:00 +10:30
parent f5c9fd5d8d
commit fd3d2d83f1
24 changed files with 498 additions and 245 deletions

View File

@@ -1,13 +1,39 @@
{
"name": "flarum/pusher",
"description": "See new discussions and posts in real-time using Pusher.",
"type": "flarum-extension",
"keywords": ["discussion"],
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
"email": "toby.zerner@gmail.com"
}
],
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/pusher"
},
"require": {
"flarum/core": "^0.1.0-beta.3",
"pusher/pusher-php-server": "^2.2"
},
"autoload": {
"psr-4": {
"Flarum\\Pusher\\": "src/"
}
},
"require": {
"pusher/pusher-php-server": "^2.2"
},
"scripts": {
"style": "phpcs --standard=PSR2 -np src"
"extra": {
"flarum-extension": {
"title": "Pusher",
"icon": {
"image": "icon.png",
"backgroundSize": "55px 75px",
"backgroundPosition": "center",
"backgroundRepeat": "no-repeat",
"backgroundColor": "#40bad8",
"color": "#fff"
}
}
}
}