Skip to content

felixideas/googlesearchwrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

googlesearchwrapper

PHP class wrapping the google web search REST API. Based on httpful, psr-4 and composer.

usage

add the package to your composer.json:

"require": {
	"wingsuitist/googlesearchwrapper": "dev-master",

run composer update in your composer project root

include autoloader from composer:

require('../vendor/autoload.php');

create a search object:

$search = \felixideas\GoogleSearchWrapper\Search::search('Hello World'); 

coming soon: all the options that you can set for the search

let it search and get the result object:

$result = $search->run()

get the full response from the result object:

$result->getFullResponse();

coming soon: iterator implementation for the result object

further documentation:

httpful api

google api

psr-4

php composer

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages