Download the PHP package seantrane/profiler without Composer

On this page you can find all versions of the php package seantrane/profiler. 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 profiler

Profiler

A PHP 5.3 profiler for Laravel 4.0.x and 4.1.x.

Fork based on sebklaus/profiler, and others...

Backend based on sorora/omni, frontend based on loic-sharma/profiler. Some features inspired by papajoker/profiler, some features by juy/profiler with additions by myself.

Continued

This is a continuation of juy/profiler.
It includes Pull Requests #34 & #6.

Different themes

Dark

Light

Features

Installation

To add Profiler to your Laravel application, add the below line to your composer.json file, in "require": { … }:

"sebklaus/profiler" : "dev-master"

Then run composer update or composer install, if it is the first time you install packages.

The final step is to add the below line to the end of the providers array in app/config/app.php (or the appropriate environment app.php):

'Sebklaus\Profiler\Providers\ProfilerServiceProvider',

Configuration

In order to be able to change the default settings of Profiler, publish the config file by running:

php artisan config:publish sebklaus/profiler

To change the default settings, edit app/config/packages/sebklaus/profiler/config.php.

Profiler

Set this option to FALSE to deactivate Profiler or TRUE to activate it.
The default NULL uses the debug setting of app/config/app.php (or the appropriate environment app.php) to activate/ deactivate.

// config.php
'profiler' => NULL,

To be able to enable/ disable Profiler via URL (add /_profiler to the end of any URL (eg. http://localhost/folder/_profiler)), set the urlToggle option to TRUE:

// config.php
'urlToggle' => FALSE,

You will be redirected back to the page you started the request from (eg. http://localhost/folder).

If you have had Profiler installed prior to v1.6.0 and published the config settings, please add the above urlToggle element to the array in /app/config/packages/sebklaus/profiler/config.php or run php artisan config:publish sebklaus/profiler again.
Running php artisan config:publish sebklaus/profiler will replace the config file, so make sure you restore your desired settings.

// config.php
'urlTogglePassword' => \Hash::make((string) mt_rand(0, microtime(true))),

If profiler is NULL or FALSE and urlToggle is TRUE and your app is running in the production environment, you will be asked to enter the password that has been set for urlTogglePassword in order to enable Profiler.
Upon successful password verification, Profiler will stay enabled for the duration of the session.

Change (string) mt_rand(0, microtime(true)) to your preferred password to enable Profiler.

If you have had Profiler installed prior to v1.7.0 and published the config settings, please add the above urlTogglePassword element to the array in /app/config/packages/sebklaus/profiler/config.php or run php artisan config:publish sebklaus/profiler again.
Running php artisan config:publish sebklaus/profiler will replace the config file, so make sure you restore your desired settings.

If you wish to disable Profiler during runtime, add the below code to your script:

Config::set('profiler::profiler', false);

You can (re-)order, disable and adjust label and title for the various info sections of Profiler by editing values of the btns array:

// config.php
'btns' => array(
    'environment' => array('label'=>'ENV','title'=>'Environment'),
    'memory'      => array('label'=>'MEM','title'=>'Memory'),
    'controller'  => array('label'=>'CTRL','title'=>'Controller'),
    'routes'      => array('label'=>'ROUTES'),
    'log'         => array('label'=>'LOG'),
    'sql'         => array('label'=>'SQL'),
    'checkpoints' => array('label'=>'TIME'),
    'file'        => array('label'=>'FILES'),
    'view'        => array('label'=>'VIEW'),
    'session'     => array('label'=>'SESSION'),
    'server'      => array('label'=>'SERVER'),
    'config'      => array('label'=>'CONFIG'),
    'storage'     => array('label'=>'LOGS','title'=>'Logs in storage'),
    'auth'        => array('label'=>'AUTH'),
    'auth-sentry' => array('label'=>'AUTH')
),

Add a link to your preferred (Laravel) documentation (or really anywhere you want) by changing the value of doc.
The link is active on the Laravel logo on the left hand side of the opened Profiler.

// config.php
'doc'=>'http://laravel.com/docs',

jQuery

Profiler makes use of jQuery, which is automatically downloaded and included, if it can't be detected.

Usage

Custom Timers

To start a timer, all you need to do is:

Profiler::start('my timer key');

To end the timer, simply call the end function like so:

Profiler::end('my timer key');

Logging

Profiler utilizes Laravels built in logging system and captures logged events. To log events, you can use (as you would with Laravel) any of these:

Log::debug('Your message here');
Log::info('Your message here');
Log::notice('Your message here');
Log::warning('Your message here');
Log::error('Your message here');
Log::critical('Your message here');
Log::alert('Your message here');
Log::emergency('Your message here');

These are colour coded in the Log part of Profiler - colours may change in the future to more accurately reflect the log type.


All versions of profiler with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
illuminate/support Version ~4
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 seantrane/profiler contains the following files

Loading the files please wait ....