├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── examples ├── app.php ├── categories.php ├── collections.php ├── list.php └── search.php ├── phpunit.xml.dist ├── src ├── Client.php ├── Exception │ ├── NotFoundException.php │ └── RequestException.php └── Scraper.php └── tests ├── ScraperTest.php └── resources ├── app1.html ├── app1.json ├── app2.html ├── app2.json ├── categories.html ├── categories.json ├── list.html ├── list.json ├── search.html └── search.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/composer.json -------------------------------------------------------------------------------- /examples/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/examples/app.php -------------------------------------------------------------------------------- /examples/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/examples/categories.php -------------------------------------------------------------------------------- /examples/collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/examples/collections.php -------------------------------------------------------------------------------- /examples/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/examples/list.php -------------------------------------------------------------------------------- /examples/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/examples/search.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/src/Exception/NotFoundException.php -------------------------------------------------------------------------------- /src/Exception/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/src/Exception/RequestException.php -------------------------------------------------------------------------------- /src/Scraper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/src/Scraper.php -------------------------------------------------------------------------------- /tests/ScraperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/ScraperTest.php -------------------------------------------------------------------------------- /tests/resources/app1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/app1.html -------------------------------------------------------------------------------- /tests/resources/app1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/app1.json -------------------------------------------------------------------------------- /tests/resources/app2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/app2.html -------------------------------------------------------------------------------- /tests/resources/app2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/app2.json -------------------------------------------------------------------------------- /tests/resources/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/categories.html -------------------------------------------------------------------------------- /tests/resources/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/categories.json -------------------------------------------------------------------------------- /tests/resources/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/list.html -------------------------------------------------------------------------------- /tests/resources/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/list.json -------------------------------------------------------------------------------- /tests/resources/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/search.html -------------------------------------------------------------------------------- /tests/resources/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raulr/google-play-scraper/HEAD/tests/resources/search.json --------------------------------------------------------------------------------