├── README.md ├── composer.json ├── docs ├── accessing.md └── traversing.md └── src ├── Collectors └── NodesCollector.php ├── Contracts ├── DomContract.php ├── NodeContract.php └── NodesCollectorContract.php ├── Dom.php ├── DomFactory.php ├── Node.php ├── NodeFactory.php └── Sources └── simple_html_dom.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/composer.json -------------------------------------------------------------------------------- /docs/accessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/docs/accessing.md -------------------------------------------------------------------------------- /docs/traversing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/docs/traversing.md -------------------------------------------------------------------------------- /src/Collectors/NodesCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Collectors/NodesCollector.php -------------------------------------------------------------------------------- /src/Contracts/DomContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Contracts/DomContract.php -------------------------------------------------------------------------------- /src/Contracts/NodeContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Contracts/NodeContract.php -------------------------------------------------------------------------------- /src/Contracts/NodesCollectorContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Contracts/NodesCollectorContract.php -------------------------------------------------------------------------------- /src/Dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Dom.php -------------------------------------------------------------------------------- /src/DomFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/DomFactory.php -------------------------------------------------------------------------------- /src/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Node.php -------------------------------------------------------------------------------- /src/NodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/NodeFactory.php -------------------------------------------------------------------------------- /src/Sources/simple_html_dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenthangplus/HTMLDomParser/HEAD/src/Sources/simple_html_dom.php --------------------------------------------------------------------------------