adityadees/laravel-lighthouse
Composer 安装命令:
composer require adityadees/laravel-lighthouse
包简介
Package wrapper for laravel framework which can make it easier for you to run Google Lighthouse to audit websites.
README 文档
README
A Google Lighthouse wrapper for laravel framework which can make it easier for you to run Google Lighthouse to audit websites. The audit results that have been completed will be saved automatically in your server directory.
run
composer require adityadees/laravel-lighthouse
then
php artisan vendor:publish --tag=laravel-lighthouse
Before use this package you need define variable on config/laravel-lighthouse.php as global config
To use it you can run
# $url = optional, you can using global config or override it to this variable # $device = optional, if blank will scan both, mobile and desktop mode $lighouse = (new LaravelLighthouse())->run($url,$device); // using default config option $lighouse = (new LaravelLighthouse())->run(); // run both mobile and desktop $lighouse = (new LaravelLighthouse())->run('https://adityadees.com'); // run only mobile $lighouse = (new LaravelLighthouse())->run('https://adityadees.com', 'mobile'); // run only desktop $lighouse = (new LaravelLighthouse())->run('https://adityadees.com', 'desktop'); // run only mobile with global url defined on config $lighouse = (new LaravelLighthouse())->run('', 'mobile'); // run only desktop with global url defined on config $lighouse = (new LaravelLighthouse())->run('', 'desktop');
or you can use your own custom configuration like this
# $url = optional, you can using global config or override it to this variable # $flag = optional, you can use the config or define it on here # $device = optional, if blank will scan both, mobile and desktop mode $lighouse = (new LaravelLighthouse())->selfConfiguration($url,$flag,$device); // using self configuration with config as default $lighouse = (new LaravelLighthouse())->selfConfiguration('https://adityadees.com'); // run self configuration with override url, flag and both device $lighouse = (new LaravelLighthouse())->selfConfiguration('https://adityadees.com', '--chrome-flags="--headless --no-sandbox --disable-gpu" --output html --output json --output-path ' . base_path() . '/public/laravel-lighthouse/mobile/result.html'); // run self configuration with override url, flag and device to mobile mode $lighouse = (new LaravelLighthouse())->selfConfiguration('https://adityadees.com', '--chrome-flags="--headless --no-sandbox --disable-gpu" --output html --output json --output-path ' . base_path() . '/public/laravel-lighthouse/mobile/result.html', 'mobile'); // run self configuration with override url, flag and device to dekstop mode $lighouse = (new LaravelLighthouse())->selfConfiguration('https://adityadees.com', '--chrome-flags="--headless --no-sandbox --disable-gpu" --preset=desktop --output html --output json --output-path ' . base_path() . '/public/laravel-lighthouse/desktop/result.html', 'desktop');
for more information about the flag you can visit https://github.com/GoogleChrome/lighthouse
if you following the configuration example the results should be like this
- Inside folder
publicyou can see the results.htmland.json
https://github.com/adityadees/laravel-lighthouse/tree/docs/example-results/laravel-lighthouse
if you open the .html you can see the results like this
Desktop
adityadees/laravel-lighthouse 适用场景与选型建议
adityadees/laravel-lighthouse 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9.38k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2023 年 04 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 adityadees/laravel-lighthouse 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 adityadees/laravel-lighthouse 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 9.38k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-04-22


