-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
63 lines (63 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "serpapi/google-search-results-php",
"description": "Get Google, Bing, Baidu, Ebay, Yahoo, Yandex, Home depot, Naver, Apple, Duckduckgo, Youtube search results via SerpApi.com",
"type": "library",
"keywords": [
"Google",
"Serp",
"Search",
"Result",
"Google",
"Youtube",
"Walmart",
"Yandex",
"Localisation",
"REST",
"api",
"client",
"curl",
"JSON",
"XML",
"naver",
"duckduckgo",
"apple",
"store",
"naver",
"homedepot",
"datamining",
"ml",
"learning",
"scrape"
],
"homepage": "http://github.com/serpapi/google-search-results-php",
"license": "MIT",
"authors": [
{
"name": "Victor Benarbia",
"role": "Developer",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/serpapi/google-search-results-php/issues"
},
"require": {
"php": "^5.5 || ^7.0 || ^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"php": "^5.5 || ^7.0 || ^8.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"files": [
"restclient.php",
"google-search-results.php"
]
},
"scripts": {
"test": "phpunit test/GoogleSearchTest.php",
"example": "phpunit test/example_test.php"
}
}