├── .github └── workflows │ └── static.yml ├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── etc └── terms.txt ├── src ├── Browser.php ├── Engine │ ├── BingSearch.php │ ├── GoogleSearch.php │ └── SearchEngine.php ├── GoogleCaptchaSolver.php ├── SearchResponse.php └── global.php └── tests ├── BingTest.php └── GoogleTest.php /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/composer.lock -------------------------------------------------------------------------------- /etc/terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/etc/terms.txt -------------------------------------------------------------------------------- /src/Browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/src/Browser.php -------------------------------------------------------------------------------- /src/Engine/BingSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/src/Engine/BingSearch.php -------------------------------------------------------------------------------- /src/Engine/GoogleSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/src/Engine/GoogleSearch.php -------------------------------------------------------------------------------- /src/Engine/SearchEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/src/Engine/SearchEngine.php -------------------------------------------------------------------------------- /src/GoogleCaptchaSolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/src/GoogleCaptchaSolver.php -------------------------------------------------------------------------------- /src/SearchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/SerpScraper/HEAD/src/SearchResponse.php -------------------------------------------------------------------------------- /src/global.php: -------------------------------------------------------------------------------- 1 |