Description
An easy-to-use API Wrapper for Googles PageSpeed Insights. The JSON response is mapped to objects for an headache-free usage.
PhpInsights alternatives and similar libraries
Based on the "Third Party APIs" category.
Alternatively, view PhpInsights alternatives based on common mentions on social networks and blogs.
-
Amazon Web Service SDK
Official repository of the AWS SDK for PHP (@awsforphp) -
PHP Github API
A simple PHP GitHub API client, Object Oriented, tested and documented. -
Twilio
A PHP library for communicating with the Twilio REST API and generating TwiML. -
Campaign Monitor
A PHP library for the Campaign Monitor API -
Digital Ocean
PHP 5.3+ library which helps you to interact with the DigitalOcean API
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of PhpInsights or a related project?
README
PhpInsights
An easy-to-use API Wrapper for Googles PageSpeed Insights. The JSON response is mapped to objects for an headache-free usage.
Installation
- Get an api key from the google developer console for Page Speed Insights.
composer require dsentker/phpinsights
- Have fun with this library.
Usage
Simple Usage
$url = 'http://example.com';
$caller = new \PhpInsights\InsightsCaller('your-google-api-key-here', 'de');
$response = $caller->getResponse($url, \PhpInsights\InsightsCaller::STRATEGY_MOBILE);
$result = $response->getMappedResult();
var_dump($result->getSpeedScore()); // 100
var_dump($result->getUsabilityScore()); // 100
Using Concurrent Requests
$urls = array(
'http://example.com',
'http://example2.com',
'http://example3.com'
);
$caller = new \PhpInsights\InsightsCaller('your-google-api-key-here', 'fr');
$responses = $caller->getResponses($urls, \PhpInsights\InsightsCaller::STRATEGY_MOBILE);
foreach ($responses as $url => $response) {
$result = $response->getMappedResult();
var_dump($result->getSpeedScore()); // 100
var_dump($result->getUsabilityScore()); // 100
}
Result details
Full result
/** @var \PhpInsights\Result\InsightsResult $result */
foreach($result->getFormattedResults()->getRuleResults() as $rule => $ruleResult) {
/*
* If the rule impact is zero, it means that the website has passed the test.
*/
if($ruleResult->getRuleImpact() > 0) {
var_dump($rule); // AvoidLandingPageRedirects
var_dump($ruleResult->getLocalizedRuleName()); // "Zielseiten-Weiterleitungen vermeiden"
/*
* The getDetails() method is a wrapper to get the `summary` field as well as `Urlblocks` data. You
* can use $ruleResult->getUrlBlocks() and $ruleResult->getSummary() instead.
*/
foreach($ruleResult->getDetails() as $block) {
var_dump($block->toString()); // "Auf Ihrer Seite sind keine Weiterleitungen vorhanden"
}
}
}
Result details by Rule group
/** @var \PhpInsights\Result\InsightsResult $result */
foreach($result->getFormattedResults()->getRuleResultsByGroup(RuleGroup::GROUP_SPEED) as $rule => $ruleResult) {
$ruleResult->getSummary()->toString();
}
Screenshot
print $result->screenshot->getImageHtml(); // html image element
print $result->screenshot->getData(); // base64 screenshot representation
Testing
$ phpunit --bootstrap "path/to/phpinsights/src/autoload.php"
Credits
Submitting bugs and feature requests
Bugs and feature request are tracked on GitHub.
ToDo
- Write more tests
- Improve my english skills
External Libraries
This library depends on JsonMapper by cweiske to map json fields to php objects and Guzzle (surprise!).
Copyright and license
PhpInsights is licensed for use under the MIT License (MIT). Please see LICENSE for more information.
*Note that all licence references and agreements mentioned in the PhpInsights README section above
are relevant to that project's source code only.