├── .gitignore ├── README.md ├── composer.json ├── composer.lock └── src ├── Helpers.php ├── Utils.php ├── XCrawler.php ├── config.php └── example ├── Bootstrap.php └── dytt8_crawler.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | TODO.md 4 | test.php 5 | *.log 6 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/src/Helpers.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/src/Utils.php -------------------------------------------------------------------------------- /src/XCrawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/src/XCrawler.php -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/src/config.php -------------------------------------------------------------------------------- /src/example/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/src/example/Bootstrap.php -------------------------------------------------------------------------------- /src/example/dytt8_crawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yan68/xcrawler/HEAD/src/example/dytt8_crawler.php --------------------------------------------------------------------------------