John Davidson

php - Class not found while using composer and docker

0 comments
Message:


Im using this library https://serp-spider.github.io/documentation/search-engine/google/


When I follow their example I got this.


Fatal error: Uncaught Error: Class "Serps\SearchEngine\Google\GoogleClient" not found in /var/www/html/index.php:19 Stack trace: #0 {main} thrown in /var/www/html/index.php on line 19

This is my index.php


<?php

use Serps\SearchEngine\Google\GoogleClient;
use Serps\SearchEngine\Google\GoogleUrl;

$googleClient = new Serps\SearchEngine\Google\GoogleClient($httpClient);

$googleUrl = new GoogleUrl();
$google->setSearchTerm('simpsons');

$response = $googleClient->query($googleUrl);

$results = $response->getNaturalResults();

foreach($results as $result){
// Here we iterate over the result list
// Each result will have different data based on its type
}

?>

I've been thinking about what it could be for a while but I can't



My Answer:
not found: SerpSpider\GoogleSearch\GoogleSearchClient in /app/index.php:5Stack trace:#0 {main} thrown in /app/index.php on line 5__ _This is my index.php file._

Rate this post

5 of 5 based on 3302 votes

Comments




© 2024 Hayatsk.info - Personal Blogs Platform. All Rights Reserved.
Create blog  |  Privacy Policy  |  Terms & Conditions  |  Contact Us