├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── composer.json ├── lib ├── Document.php ├── Element.php ├── NodeList.php └── SelectorConverter.php ├── phpunit.xml.dist └── tests ├── FastSimpleHTMLDom ├── DocumentTest.php ├── ElementTest.php ├── NodeListTest.php └── SelectorConverterTest.php ├── TestCase.php ├── bootstrap.php └── fixtures └── testpage.html /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/_config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/composer.json -------------------------------------------------------------------------------- /lib/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/lib/Document.php -------------------------------------------------------------------------------- /lib/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/lib/Element.php -------------------------------------------------------------------------------- /lib/NodeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/lib/NodeList.php -------------------------------------------------------------------------------- /lib/SelectorConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/lib/SelectorConverter.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/FastSimpleHTMLDom/DocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/tests/FastSimpleHTMLDom/DocumentTest.php -------------------------------------------------------------------------------- /tests/FastSimpleHTMLDom/ElementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/tests/FastSimpleHTMLDom/ElementTest.php -------------------------------------------------------------------------------- /tests/FastSimpleHTMLDom/NodeListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/tests/FastSimpleHTMLDom/NodeListTest.php -------------------------------------------------------------------------------- /tests/FastSimpleHTMLDom/SelectorConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/tests/FastSimpleHTMLDom/SelectorConverterTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimabdc/PHP-Fast-Simple-HTML-DOM-Parser/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |