-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (49 loc) · 1.15 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "serphouse/serphouse-php",
"description": "Automate your search engines (Google, Bing, Yahoo) result (serp api) using Serphouse.com API client and retrive in structured JSON format.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/SERPHouse/serphouse-php",
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8"
},
"keywords":[
"Serp Api",
"Google Serp Api",
"Bing Serp Api",
"Yahoo Serp Api",
"php sdk",
"serphouse",
"Serp",
"Search",
"Result",
"Google",
"Localisation",
"REST",
"api",
"client",
"curl",
"JSON",
"XML",
"datamining",
"ml",
"learning",
"scrape"
],
"autoload": {
"psr-4": {
"SERPHouse\\": "src/SERPHouse/",
"SERPHouse\\Tests\\": "tests/"
}
},
"support": {
"email": "getsupport@serphouse.com"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^1.10"
}
}