Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 343 Bytes

File metadata and controls

20 lines (15 loc) · 343 Bytes

Google PageSpeed Insight PHP Client

PHP Client for Google Lighthouse service

Installation

$ composer require evokelektrique/google-pagespeed-php

How to use

use PageSpeed\Insight;

$api_key = "";
$url = "https://google.com";
$insight = new Insight($url, $api_key);
$result = $insight->audit();

var_dump($result);