composer.json
{
"name": "serps/search-engine-google",
"description": "Google Rules and client for SERPS",
"type": "library",
"keywords": ["SERPS", "Google"],
"homepage": "https://github.com/serp-spider/search-engine-google",
"license": "Fair",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Soufiane GHZAL",
"homepage": "https://github.com/gsouf"
}
],
"autoload":{
"psr-4" : {
"Serps\\SearchEngine\\Google\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"Serps\\Test\\SearchEngine\\Google\\": "test/suites"
}
},
"require": {
"php": ">=5.5",
"serps/core": "~0.3.0",
"ext-dom": "*"
},
"require-dev":{
"phpunit/phpunit": "~4.1",
"symfony/yaml": ">=2.0",
"squizlabs/php_codesniffer": "~3.2",
"guzzlehttp/psr7": "^1.4",
"serps/cli": "^1.1"
},
"suggest": {
"zendframework/zend-diactoros": "For http request",
"guzzlehttp/psr7": "For http request"
},
"scripts": {
"phpunit": "test/bin/test.bash",
"test": [
"@phpunit",
"@cscheck"
],
"csfix": "test/bin/phpcbf.bash",
"cscheck": "test/bin/phpcs.bash emacs"
},
"extra": {
"branch-alias": {
"dev-master": "0.3.0-dev"
}
}
}