Skip to content

Commit 2984d54

Browse files
committed
Latest commits for the extension to work
1 parent fb384df commit 2984d54

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
vendor
3+
composer.lock

bootstrap.php

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* This file is part of extum/flarum-ext-old-title.
4+
*
5+
* Copyright (c) 2018 .
6+
*
7+
*
8+
* For the full copyright and license information, please view the LICENSE.md
9+
* file that was distributed with this source code.
10+
*/
11+
namespace Extum\TimeMachine;
12+
use Illuminate\Contracts\Events\Dispatcher;
13+
return function (Dispatcher $events) {
14+
$events->subscribe(Listeners\AddClientAssets::class);
15+
};

composer.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "extum/flarum-ext-time-machine",
3+
"description": "Modify the time of your posts, user registrations and more by travelling back in time.",
4+
"keywords": [
5+
"flarum"
6+
],
7+
"type": "flarum-extension",
8+
"license": "MIT",
9+
"require": {
10+
"flarum/core": "^0.1.0-beta-7"
11+
},
12+
"authors": [
13+
{
14+
"name": "Arda Cebi",
15+
"email": "[email protected]",
16+
"role": "Developer"
17+
}
18+
],
19+
"autoload": {
20+
"psr-4": {
21+
"Extum\\TimeMachine\\": "src/"
22+
}
23+
},
24+
"extra": {
25+
"flarum-extension": {
26+
"title": "Time Machine",
27+
"icon": {
28+
"name": "far fa-clock",
29+
"backgroundColor": "#ffcc00",
30+
"color": "#000"
31+
}
32+
},
33+
"flagrow": {
34+
"discuss": ""
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)