2017 © Pedro Peláez
 

library felk-php

A module that assists with logging all requests and responses.

image

fuzz/felk-php

A module that assists with logging all requests and responses.

  • Thursday, May 3, 2018
  • by Fuzzpro
  • Repository
  • 11 Watchers
  • 1 Stars
  • 2,881 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 2 Open issues
  • 24 Versions
  • 1 % Grown

The README.md

Felk for PHP/LaravelBuild Status Slack Status

FELK is a helper library which can take data from a Laravel request/response and push it to a store (currently ElasticSearch, hence Fuzz ELK). It is intended to only be used in development environments to debug and run analytics on API requests/responses., (*1)

Installation

$ composer require fuzz/felk-php

Configuration

  1. Add the service provider to config/app.php, (*2)

    'providers' => [
        ...
    
        /*
         * Application Service Providers...
         */
        \Fuzz\Felk\Providers\FelkServiceProvider::class,
    
        ...
    ],
    
  2. Publish the vendor config $ php artisan vendor:publish --provider="Fuzz\Felk\Providers\FelkServiceProvider"
  3. Configure the configuration variables in config/felk.php
  4. Add the Felk middleware to the middleware stack in app/Http/Kernel.php ```php /**
    • The application's global HTTP middleware stack.
    • These middleware are run during every request to your application.
    • @var array */ protected $middleware = [ ... \Fuzz\Felk\Middleware\FelkMiddleware::class, ... ]; ```
  5. Check ElasticSearch.

The Versions

03/05 2018

dev-feature_collect_custom_headers

dev-feature_collect_custom_headers

A module that assists with logging all requests and responses.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Fuzz Web

05/04 2018
29/03 2018

dev-feature-mask-senstive-info

dev-feature-mask-senstive-info

A module that assists with logging all requests and responses.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Fuzz Web

16/03 2018

dev-feature_force_safe_events

dev-feature_force_safe_events

A module that assists with logging all requests and responses.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Fuzz Web