Remove HTMLToMarkdown dependency

This commit is contained in:
Frederic Guillot
2016-01-07 21:36:51 -05:00
parent 7864685cfd
commit f32d23d015
5 changed files with 9 additions and 80 deletions

View File

@@ -4,7 +4,6 @@ namespace Kanboard\ServiceProvider;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
use League\HTMLToMarkdown\HtmlConverter;
use Kanboard\Core\Mail\Client as EmailClient;
use Kanboard\Core\ObjectStorage\FileStorage;
use Kanboard\Core\Paginator;
@@ -133,10 +132,6 @@ class ClassProvider implements ServiceProviderInterface
return new HttpClient($c);
};
$container['htmlConverter'] = function () {
return new HtmlConverter(array('strip_tags' => true));
};
$container['objectStorage'] = function () {
return new FileStorage(FILES_DIR);
};