1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 21:29:15 +00:00

update autoloader to consider namespaces for third party libraries: placed and loaded from vendor/namespace/classpath.php

update readability to a newer implementation based on Readability.js (https://github.com/andreskrey/readability.php)
add vendor/Psr/Log interface required for the above
This commit is contained in:
Andrew Dolgov
2018-06-20 14:58:09 +03:00
parent d00d515320
commit 2aaefbfa54
30 changed files with 3494 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace andreskrey\Readability\Nodes\DOM;
use andreskrey\Readability\Nodes\NodeTrait;
/**
* @method getAttribute($attribute)
*/
class DOMNode extends \DOMNode
{
use NodeTrait;
}