grezlikowski/page-speed
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
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.
grezlikowski/page-speed 适用场景与选型建议
grezlikowski/page-speed 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「page-speed」 「grezlikowski」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 grezlikowski/page-speed 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 grezlikowski/page-speed 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 grezlikowski/page-speed 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 39
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-16