Download the PHP package beyondcode/laravel-server-timing without Composer

On this page you can find all versions of the php package beyondcode/laravel-server-timing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-server-timing

Laravel Server Timings

Latest Version on Packagist Total Downloads

Add Server-Timing header information from within your Laravel apps.

Installation

You can install the package via composer:

Usage

To add server-timing header information, you need to add the \BeyondCode\ServerTiming\Middleware\ServerTimingMiddleware::class, middleware to your HTTP Kernel. In order to get the most accurate results, put the middleware as the first one to load in the middleware stack.

Laravel 11

bootstrap/app.php

Laravel 10 and below

app/Http/Kernel.php


By default, the middleware measures only three things, to keep it as light-weight as possible:

Once the package is successfully installed, you can see your timing information in the developer tools of your browser. Here's an example from Chrome:

CleanShot 2024-03-18 at 13 48 53@2x

Adding additional measurements

If you want to provide additional measurements, you can use the start and stop methods. If you do not explicitly stop a measured event, the event will automatically be stopped once the middleware receives your response. This can be useful if you want to measure the time your Blade views take to compile.

CleanShot 2024-03-18 at 13 51 56@2x

If you already know the exact time that you want to set as the measured time, you can use the setDuration method. The duration should be set as milliseconds:

In addition to providing milliseconds as the duration, you can also pass a callable that will be measured instead:

Adding textual information

You can also use the Server-Timing middleware to only set textual information without providing a duration.

Publishing configuration file

The configuration file could be published using: php artisan vendor:publish --tag=server-timing-config

You can disable the middleware by changing the timing.enabled configuration to false or adding SERVER_TIMING_ENABLED=false to your .env file.

Testing

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

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


All versions of laravel-server-timing with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.0
illuminate/support Version 5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
symfony/stopwatch Version ^4.0|^5.0|^6.0|^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package beyondcode/laravel-server-timing contains the following files

Loading the files please wait ....