文件名称:laravel-http-stats
文件大小:27KB
文件格式:ZIP
更新时间:2024-06-13 00:46:02
PHP
Laravel Http统计 Laravel Http Stats使您可以访问通过Laravels 执行的HTTP统计信息的传输统计信息。 安装 您可以使用提取软件包: $ composer require clarkeash/laravel-http-stats 用法 发出这样的请求后: use Illuminate \ Support \ Facades \ Http ; $ response = Http :: get ( 'http://test.com' ); 现在,您可以访问$response对象上的stats方法。 $ response -> stats ()-> lookup (); // dns time in ms $ response -> stats ()-> connect (); // tcp connection time in ms $ res
【文件预览】:
laravel-http-stats-master
----.gitignore(50B)
----README.md(2KB)
----.github()
--------workflows()
----tests()
--------Unit()
--------TestCase.php(932B)
----phpunit.xml(777B)
----composer.lock(172KB)
----LICENSE(1KB)
----composer.json(952B)
----src()
--------Stats.php(2KB)
--------Providers()