gitextract_1yhyg96l/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── build.xml ├── composer.json ├── fDOMDocument.spec ├── phive.xml ├── phpcs.xml ├── phpunit.xml.dist ├── src/ │ ├── XPathQuery.php │ ├── XPathQueryException.php │ ├── autoload.php │ ├── css/ │ │ ├── DollarEqualRule.php │ │ ├── NotRule.php │ │ ├── NthChildRule.php │ │ ├── RegexRule.php │ │ ├── RuleInterface.php │ │ └── Translator.php │ ├── fDOMDocument.php │ ├── fDOMDocumentFragment.php │ ├── fDOMElement.php │ ├── fDOMException.php │ ├── fDOMNode.php │ └── fDOMXPath.php └── tests/ ├── Translator.test.php ├── XPathQuery.test.php ├── _data/ │ ├── broken.xml │ ├── selector.xml │ ├── undefentity.xml │ └── valid.xml ├── fDOMDocument.test.php ├── fDOMDocumentFragment.test.php ├── fDOMElement.test.php └── fDOMXPath.test.php