PHPackages                             eliasis-framework/http-request-logger - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. eliasis-framework/http-request-logger

AbandonedArchivedEliasis-plugin[Framework](/categories/framework)

eliasis-framework/http-request-logger
=====================================

Save HTTP request information to the database.

1.0.1(8y ago)111MITPHPPHP ^5.6 || ^7.0

Since Jul 18Pushed 3y ago1 watchersCompare

[ Source](https://github.com/eliasis-framework/http-request-logger)[ Packagist](https://packagist.org/packages/eliasis-framework/http-request-logger)[ RSS](/packages/eliasis-framework-http-request-logger/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (11)Versions (2)Used By (0)

HTTP Request Logger · Eliasis PHP Framework plugin
==================================================

[](#http-request-logger--eliasis-php-framework-plugin)

[![Packagist](https://camo.githubusercontent.com/44df31acc4aea9bc8db309bc64c78af24ae62759d94d5989f0e95cae614619d1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f656c69617369732d6672616d65776f726b2f687474702d726571756573742d6c6f676765722e737667)](https://packagist.org/packages/eliasis-framework/http-request-logger)[![License](https://camo.githubusercontent.com/5cd9a6433ffa98cfe3ecf431592450e681a183a48947aede7479bef7974194e7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f656c69617369732d6672616d65776f726b2f687474702d726571756573742d6c6f676765722e737667)](https://github.com/eliasis-framework/http-request-logger/blob/master/LICENSE)

[Versión en español](README-ES.md)

Save HTTP request information to the database.

---

- [Requirements](#requirements)
- [Installation](#installation)
- [Usage](#usage)
- [Tests](#tests)
- [Patrocinar](#patrocinar)
- [Licencia](#licencia)

---

Requirements
------------

[](#requirements)

This plugin is supported by **PHP versions 5.6** or higher and is compatible with **HHVM versions 3.0** or higher.

Installation
------------

[](#installation)

The preferred way to install this extension is through [Composer](http://getcomposer.org/download/).

To install **HTTP Request Logger**, simply:

```
composer require eliasis-framework/http-request-logger

```

The previous command will only install the necessary files, if you prefer to **download the entire source code** you can use:

```
composer require eliasis-framework/http-request-logger --prefer-source

```

You can also **clone the complete repository** with Git:

```
git clone https://github.com/eliasis-framework/http-request-logger.git

```

Usage
-----

[](#usage)

To use this plugin, your [Eliasis application](https://github.com/eliasis-framework/eliasis) must use the [PHP-Database](https://eliasis-framework.github.io/eliasis/v1.1.3/lang/en/#libraries-Database) library and add the following to the application configuration files:

```
/**
 * eliasis-app/config/complements.php
 */
return [

    'plugin' => [

        'http-request-logger' => [

            'db-id' => 'app',
            'db-prefix' => 'test_',
            'db-charset' => 'utf8',
            'db-engine' => 'innodb'
        ],
    ],
];
```

This will create the `test_request` table and automatically save all HTTP requests.

The table structure created is as follows:

ColumnsData typeExamplerequest\_idINT(9)1request\_ipVARCHAR(45)87.142.85.70request\_uriTEXT/sample-app/request\_protocolVARCHAR(100)HTTP/1.1request\_methodVARCHAR(15)GETrequest\_refererVARCHAR(255)request\_user\_agentVARCHAR(255)Mozilla/5.0 (...)request\_http\_stateINT(3)200request\_load\_timeFLOAT0.008createdTIMESTAMP2018-02-28 08:26:43Tests
-----

[](#tests)

To run [tests](tests) you just need [composer](http://getcomposer.org/download/) and to execute the following:

```
git clone https://github.com/eliasis-framework/http-request-logger.git

cd http-request-logger

composer install

```

Run unit tests with [PHPUnit](https://phpunit.de/):

```
composer phpunit

```

Run [PSR2](http://www.php-fig.org/psr/psr-2/) code standard tests with [PHPCS](https://github.com/squizlabs/PHP_CodeSniffer):

```
composer phpcs

```

Run [PHP Mess Detector](https://phpmd.org/) tests to detect inconsistencies in code style:

```
composer phpmd

```

Run all previous tests:

```
composer tests

```

Patrocinar
----------

[](#patrocinar)

Si este proyecto te ayuda a reducir el tiempo de desarrollo, [puedes patrocinarme](https://github.com/josantonius/lang/es-ES/README.md#patrocinar)para apoyar mi trabajo 😊

Licencia
--------

[](#licencia)

Este repositorio tiene una licencia [MIT License](LICENSE).

Copyright © 2017-2022, [Josantonius](https://github.com/josantonius/lang/es-ES/README.md#contacto)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~226 days

Total

2

Last Release

2991d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4b221283501ec8a9cbaefaf27821a91ae8ddd33bddf1fccc6c6815b7ad216ff1?d=identicon)[Josantonius](/maintainers/Josantonius)

---

Top Contributors

[![josantonius](https://avatars.githubusercontent.com/u/18104336?v=4)](https://github.com/josantonius "josantonius (37 commits)")

---

Tags

database-libraryeliasis-frameworkeliasis-php-frameworkeliasis-pluginhttp-requesthttp-requestsphprequestrequestphpframeworkEliasishmvcHTTP Request LoggerEliasis plugin

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/eliasis-framework-http-request-logger/health.svg)

```
[![Health](https://phpackages.com/badges/eliasis-framework-http-request-logger/health.svg)](https://phpackages.com/packages/eliasis-framework-http-request-logger)
```

###  Alternatives

[fuel/fuel

FuelPHP is a simple, flexible, community driven PHP 5.4+ framework, based on the best ideas of other frameworks, with a fresh start!

1.5k42.3k](/packages/fuel-fuel)[dframe/dframe

PHP Framework - Dframe

136.4k3](/packages/dframe-dframe)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
