├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config └── laravel-google-keywords.php ├── database └── migrations │ ├── .gitkeep │ └── 2017_07_31_113017_create_laravel_google_keywords_table.php ├── intro.jpg ├── phpunit.xml └── src ├── Console └── FetchCommand.php ├── Exceptions └── InvalidTokenException.php ├── GoogleKeywordsServiceProvider.php ├── Models └── GoogleKeyword.php └── Services ├── Google ├── GoogleClientFactory.php └── Webmasters.php ├── KeywordsFetcher.php └── KeywordsSaver.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-google-keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/config/laravel-google-keywords.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/2017_07_31_113017_create_laravel_google_keywords_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/database/migrations/2017_07_31_113017_create_laravel_google_keywords_table.php -------------------------------------------------------------------------------- /intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/intro.jpg -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Console/FetchCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Console/FetchCommand.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Exceptions/InvalidTokenException.php -------------------------------------------------------------------------------- /src/GoogleKeywordsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/GoogleKeywordsServiceProvider.php -------------------------------------------------------------------------------- /src/Models/GoogleKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Models/GoogleKeyword.php -------------------------------------------------------------------------------- /src/Services/Google/GoogleClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Services/Google/GoogleClientFactory.php -------------------------------------------------------------------------------- /src/Services/Google/Webmasters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Services/Google/Webmasters.php -------------------------------------------------------------------------------- /src/Services/KeywordsFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Services/KeywordsFetcher.php -------------------------------------------------------------------------------- /src/Services/KeywordsSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsolutions/laravel-google-keywords/HEAD/src/Services/KeywordsSaver.php --------------------------------------------------------------------------------