PHPackages                             serdartaylan/apilogger - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. serdartaylan/apilogger

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

serdartaylan/apilogger
======================

fork of awt/apilogger, jadayash/apilogger

v0.0.1(4y ago)031MITPHP

Since Jan 19Pushed 4y agoCompare

[ Source](https://github.com/serdartaylan/apilogger)[ Packagist](https://packagist.org/packages/serdartaylan/apilogger)[ RSS](/packages/serdartaylan-apilogger/feed)WikiDiscussions master Synced today

READMEChangelog (1)DependenciesVersions (2)Used By (0)

API Logger
==========

[](#api-logger)

This is a small package that can helps in debugging api logs. It can log request method, url, duration, request payload, which models are retrieved, controller and method.

[![screenshot](screenshot.png)](screenshot.png)

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

[](#installation)

1. Install the package via composer

```
composer require awt/apilogger @dev
```

Usage
-----

[](#usage)

1. Laravel 5.5 and higher uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider. If you use a lower version of Laravel you must register it in your *app.php* file:

```
AWT\Providers\ApiLogServiceProvider::class
```

2. Publish the config file with:

```
php artisan vendor:publish --tag=config --provider="AWT\Providers\ApiLogServiceProvider"
```

The config file is called *apilogs.php*. Currently supported drivers are *db* and *file*

By default the logger will use *file* to log the data. But if you want to use Database for logging, migrate table by using

You can also configure which fields should not be logged like passwords, secrets, etc.

***You dont need to migrate if you are just using file driver***

```
php artisan migrate
```

3. Add middleware named ***apilogger*** to the route or controller you want to log data

```
//in route.php or web.php
Route::middleware('apilogger')->post('/test',function(){
    return response()->json("test");
});
```

4. Dashboard can be accessible via ***yourdomain.com/apilogs***

Clear the logs
--------------

[](#clear-the-logs)

You can permenently clear the logs by using the following command.

```
php artisan apilog:clear
```

Implement your own log driver
-----------------------------

[](#implement-your-own-log-driver)

1. Your driver class ***must*** implement ApiLoggerInterface for saving, retrieving and deleting the logs.
2. Your driver class may extends `AbstractLogger` class which provide helpful methods such as logData and mapArrayToModel.
3. Substitude in your new class name instead of `db` or `file` as the driver. eg: `\App\Apilogs\CustomLogger::class`

Security
--------

[](#security)

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

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

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

Unknown

Total

1

Last Release

1572d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/dea646e3e720d20850b26891c9c4a4a26d60ee553af3baea250990d2003dcfaf?d=identicon)[serdartaylan](/maintainers/serdartaylan)

---

Top Contributors

[![aungwinthant](https://avatars.githubusercontent.com/u/17741172?v=4)](https://github.com/aungwinthant "aungwinthant (9 commits)")[![lloy0076](https://avatars.githubusercontent.com/u/1174532?v=4)](https://github.com/lloy0076 "lloy0076 (7 commits)")[![JohnRoux](https://avatars.githubusercontent.com/u/4610241?v=4)](https://github.com/JohnRoux "JohnRoux (2 commits)")[![bienvenu007](https://avatars.githubusercontent.com/u/51967788?v=4)](https://github.com/bienvenu007 "bienvenu007 (2 commits)")[![serdartaylan](https://avatars.githubusercontent.com/u/1150010?v=4)](https://github.com/serdartaylan "serdartaylan (1 commits)")[![setkyar](https://avatars.githubusercontent.com/u/4435358?v=4)](https://github.com/setkyar "setkyar (1 commits)")[![t1sh0o](https://avatars.githubusercontent.com/u/3911728?v=4)](https://github.com/t1sh0o "t1sh0o (1 commits)")[![mikeerickson](https://avatars.githubusercontent.com/u/183153?v=4)](https://github.com/mikeerickson "mikeerickson (1 commits)")[![jadayash](https://avatars.githubusercontent.com/u/66420205?v=4)](https://github.com/jadayash "jadayash (1 commits)")

### Embed Badge

![Health badge](/badges/serdartaylan-apilogger/health.svg)

```
[![Health](https://phpackages.com/badges/serdartaylan-apilogger/health.svg)](https://phpackages.com/packages/serdartaylan-apilogger)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.1k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M94](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M137](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[datadog/php-datadogstatsd

An extremely simple PHP datadogstatsd client

19124.6M15](/packages/datadog-php-datadogstatsd)

PHPackages © 2026

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