grezlikowski/page-speed 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

grezlikowski/page-speed

最新稳定版本:1.1.0

Composer 安装命令:

composer require grezlikowski/page-speed

包简介

PageSpeed with History is a PHP package that provides a convenient way to track and analyze the performance of web pages over time. It allows developers to monitor page speed metrics, identify performance bottlenecks, and optimize their websites for better user experience.

README 文档

README

Latest Version on Packagist Tests Total Downloads

PageSpeed with History is a PHP package that provides a convenient way to track and analyze the performance of web pages over time. It allows developers to monitor page speed metrics, identify performance bottlenecks, and optimize their websites for better user experience.

Installation

You can install the package via composer:

composer require grezlikowski/page-speed

Run migrations:

php artisan migrate

Add your Google PageSpeed Insights API key to .env:

GOOGLE_PAGESPEED_API_KEY=your-api-key-here

Publishing

Migrations run automatically without publishing. Config works out of the box thanks to mergeConfigFrom. You can optionally publish assets to customize them:

Config:

php artisan vendor:publish --tag="page-speed-config"

Views:

php artisan vendor:publish --tag="page-speed-views"

Usage

Visit /page-speed in your browser. By default, the panel is accessible to everyone.

Authorization

You can restrict access to the panel using a Laravel Gate. Define a viewPageSpeed gate in your AppServiceProvider:

use Illuminate\Support\Facades\Gate;

public function boot(): void
{
    Gate::define('viewPageSpeed', function ($user) {
        return $user->is_admin;
    });
}

If the viewPageSpeed gate is not defined, the panel is open to all users.

You can also change the gate name in the config:

// config/page-speed.php
'gate' => 'myCustomGate',

Alternatively, use a custom callback via PageSpeedPanel::auth() in your AppServiceProvider:

use Grezlikowski\PageSpeed\PageSpeedPanel;

public function boot(): void
{
    PageSpeedPanel::auth(function ($request) {
        return $request->user()?->hasRole('administrator');
    });
}

When a custom callback is registered via PageSpeedPanel::auth(), it takes priority over the gate.

Configuration

You can customize the panel path, middleware, and other settings in config/page-speed.php:

return [
    'api_key' => env('GOOGLE_PAGESPEED_API_KEY', ''),
    'path' => env('PAGESPEED_PATH', 'page-speed'),
    'middleware' => ['web'],
    'default_strategy' => 'mobile',
    'history_limit' => 50,
    'timeout' => 60,
    'gate' => 'viewPageSpeed',
    'enabled' => env('PAGESPEED_ENABLED', true),
];

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

This package was created using the Spatie Package Skeleton.

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 6
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 9
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-03-16

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固