Skip to content
This repository has been archived by the owner on Apr 5, 2020. It is now read-only.

Commit

Permalink
Include dependencies in the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Dec 29, 2015
1 parent 3c8312d commit d98fa67
Show file tree
Hide file tree
Showing 78 changed files with 7,766 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace Kanboard\Plugin\Jabber;

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

use Kanboard\Core\Translator;
use Kanboard\Core\Plugin\Base;

Expand Down Expand Up @@ -39,7 +41,7 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '1.0.2';
return '1.0.3';
}

public function getPluginHomepage()
Expand Down
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "kanboard/plugin-jabber",
"type": "project",
"description": "Kanboard plugin to receive notifications on Jabber",
"license": "MIT",
"authors": [
{
"name": "Frédéric Guillot"
}
],
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"discard-changes": true
},
"require" : {
"php" : ">=5.3",
"fabiang/xmpp" : "0.6.1"
}
}
117 changes: 117 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

// autoload.php @generated by Composer

require_once __DIR__ . '/composer' . '/autoload_real.php';

return ComposerAutoloaderInit0974ba0e8d42c8958de6db3414ec99de::getLoader();
Loading

0 comments on commit d98fa67

Please sign in to comment.