Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
adaur committed Jan 24, 2016
0 parents commit 9619e65
Show file tree
Hide file tree
Showing 27 changed files with 2,484 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
featherbb/config.php
.idea/
nbproject/
5 changes: 5 additions & 0 deletions bootstrap.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

require __DIR__.'/vendor/autoload.php';

return 'FeatherBB\Plugins\PrivateMessages';
7 changes: 7 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"autoload": {
"psr-4": {
"FeatherBB\\Plugins\\": "src/"
}
}
}
9 changes: 9 additions & 0 deletions featherbb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "private-messages",
"title": "Private messages",
"description": "Manage your private conversations with other members of the community.",
"version": "0.1.0",
"author": {
"name": "beaver"
}
}
576 changes: 576 additions & 0 deletions src/Controller/PrivateMessages.php

Large diffs are not rendered by default.

Loading

0 comments on commit 9619e65

Please sign in to comment.