├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── composer.json ├── composer.lock ├── doc └── openapi.yml ├── misc ├── categories.json ├── open-api.png └── swagger-editor-instructions.png ├── phpunit.xml ├── src ├── Error │ └── GoogleTrendsException.php ├── Result │ ├── AbstractResultCollection.php │ ├── ExploreResult.php │ ├── ExploreResultCollection.php │ ├── InterestByRegionCollection.php │ ├── InterestByRegionResult.php │ ├── InterestOverTimeCollection.php │ ├── InterestOverTimeResult.php │ ├── RelatedResult.php │ ├── RelatedResultCollection.php │ └── ResultCollectionInterface.php └── Search │ ├── AbstractRelatedSearch.php │ ├── ExploreSearch.php │ ├── InterestByRegionSearch.php │ ├── InterestOverTimeSearch.php │ ├── Psr7 │ └── Search.php │ ├── RelatedQueriesSearch.php │ ├── RelatedTopicsSearch.php │ ├── SearchFilter.php │ ├── SearchInterface.php │ └── SearchRequest.php ├── tests ├── Integration │ └── Search │ │ ├── ExploreSearchTest.php │ │ ├── InterestByRegionSearchTest.php │ │ ├── InterestOverTimeSearchTest.php │ │ ├── RelatedQueriesSearchTest.php │ │ └── RelatedTopicsSearchTest.php └── Unit │ ├── Result │ ├── ExploreResultCollectionTest.php │ ├── InterestByRegionCollectionTest.php │ ├── InterestOverTimeResultCollectionTest.php │ └── RelatedResultCollectionTest.php │ └── Search │ ├── Psr7 │ └── SearchTest.php │ ├── SearchFilterTest.php │ └── SearchRequestTest.php └── web └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/composer.lock -------------------------------------------------------------------------------- /doc/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/doc/openapi.yml -------------------------------------------------------------------------------- /misc/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/misc/categories.json -------------------------------------------------------------------------------- /misc/open-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/misc/open-api.png -------------------------------------------------------------------------------- /misc/swagger-editor-instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/misc/swagger-editor-instructions.png -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Error/GoogleTrendsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Error/GoogleTrendsException.php -------------------------------------------------------------------------------- /src/Result/AbstractResultCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/AbstractResultCollection.php -------------------------------------------------------------------------------- /src/Result/ExploreResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/ExploreResult.php -------------------------------------------------------------------------------- /src/Result/ExploreResultCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/ExploreResultCollection.php -------------------------------------------------------------------------------- /src/Result/InterestByRegionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/InterestByRegionCollection.php -------------------------------------------------------------------------------- /src/Result/InterestByRegionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/InterestByRegionResult.php -------------------------------------------------------------------------------- /src/Result/InterestOverTimeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/InterestOverTimeCollection.php -------------------------------------------------------------------------------- /src/Result/InterestOverTimeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/InterestOverTimeResult.php -------------------------------------------------------------------------------- /src/Result/RelatedResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/RelatedResult.php -------------------------------------------------------------------------------- /src/Result/RelatedResultCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/RelatedResultCollection.php -------------------------------------------------------------------------------- /src/Result/ResultCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Result/ResultCollectionInterface.php -------------------------------------------------------------------------------- /src/Search/AbstractRelatedSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/AbstractRelatedSearch.php -------------------------------------------------------------------------------- /src/Search/ExploreSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/ExploreSearch.php -------------------------------------------------------------------------------- /src/Search/InterestByRegionSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/InterestByRegionSearch.php -------------------------------------------------------------------------------- /src/Search/InterestOverTimeSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/InterestOverTimeSearch.php -------------------------------------------------------------------------------- /src/Search/Psr7/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/Psr7/Search.php -------------------------------------------------------------------------------- /src/Search/RelatedQueriesSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/RelatedQueriesSearch.php -------------------------------------------------------------------------------- /src/Search/RelatedTopicsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/RelatedTopicsSearch.php -------------------------------------------------------------------------------- /src/Search/SearchFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/SearchFilter.php -------------------------------------------------------------------------------- /src/Search/SearchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/SearchInterface.php -------------------------------------------------------------------------------- /src/Search/SearchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/src/Search/SearchRequest.php -------------------------------------------------------------------------------- /tests/Integration/Search/ExploreSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Integration/Search/ExploreSearchTest.php -------------------------------------------------------------------------------- /tests/Integration/Search/InterestByRegionSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Integration/Search/InterestByRegionSearchTest.php -------------------------------------------------------------------------------- /tests/Integration/Search/InterestOverTimeSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Integration/Search/InterestOverTimeSearchTest.php -------------------------------------------------------------------------------- /tests/Integration/Search/RelatedQueriesSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Integration/Search/RelatedQueriesSearchTest.php -------------------------------------------------------------------------------- /tests/Integration/Search/RelatedTopicsSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Integration/Search/RelatedTopicsSearchTest.php -------------------------------------------------------------------------------- /tests/Unit/Result/ExploreResultCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Result/ExploreResultCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Result/InterestByRegionCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Result/InterestByRegionCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Result/InterestOverTimeResultCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Result/InterestOverTimeResultCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Result/RelatedResultCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Result/RelatedResultCollectionTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/Psr7/SearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Search/Psr7/SearchTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/SearchFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Search/SearchFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/Search/SearchRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/tests/Unit/Search/SearchRequestTest.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfs7/google-trends/HEAD/web/index.php --------------------------------------------------------------------------------