gitextract_v41etc54/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── test.yaml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── composer.json ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit.xml.dist ├── pint.json ├── playground.php ├── rector.php ├── src/ │ ├── Core.php │ ├── DataTransferObjects/ │ │ └── FeedEntry.php │ ├── PHPScraper.php │ ├── UsesBrowserKit.php │ ├── UsesContent.php │ ├── UsesFeeds.php │ ├── UsesFileParsers.php │ ├── UsesUrls.php │ └── UsesXPathFilters.php └── tests/ ├── BaseHrefTest.php ├── CanonicalTest.php ├── CoreTest.php ├── CustomSelectorTest.php ├── DownloadTest.php ├── FeedRssTest.php ├── FeedSearchIndexTest.php ├── FeedSitemapTest.php ├── HeadingTest.php ├── ImageTest.php ├── KeywordTest.php ├── LinkTest.php ├── ListsTest.php ├── MetaAuthorTest.php ├── MetaCharsetTest.php ├── MetaContentTypeTest.php ├── MetaCsrfTokenTest.php ├── MetaDescriptionTest.php ├── MetaImageTest.php ├── MetaKeywordsTest.php ├── MetaViewportTest.php ├── NavigationTest.php ├── NotFoundTest.php ├── OpenGraphTest.php ├── OutlineTest.php ├── ParagraphsTest.php ├── ParserCsvTest.php ├── ParserJsonTest.php ├── ParserXmlTest.php ├── RedirectTest.php ├── TitleTest.php ├── TwitterCardTest.php └── UrlTest.php