PHPackages                             loghouse-io/loghouse-laravel - 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. loghouse-io/loghouse-laravel

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

loghouse-io/loghouse-laravel
============================

1.0.4(4y ago)144MITPHPPHP ^7.2.5|^8.0

Since Sep 2Pushed 4y ago2 watchersCompare

[ Source](https://github.com/loghouse-io/loghouse-laravel)[ Packagist](https://packagist.org/packages/loghouse-io/loghouse-laravel)[ Docs](https://github.com/loghouse-io/loghouse-laravel)[ RSS](/packages/loghouse-io-loghouse-laravel/feed)WikiDiscussions 6.x-8.x Synced 1mo ago

READMEChangelogDependenciesVersions (9)Used By (0)

Affordable and intuitive logging backend for your Laravel apps
==============================================================

[](#affordable-and-intuitive-logging-backend-for-your-laravel-apps)

[![Latest Version on Packagist](https://camo.githubusercontent.com/0aa29ec17b057186b0386ad7f6b074c66cd2ff46bddbc5148e30d9b0568bf872/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c6f67686f7573652d696f2f6c6f67686f7573652d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/loghouse-io/loghouse-laravel)[![Total Downloads](https://camo.githubusercontent.com/df800e9548128a4dc7ccb353941b1558e856225fbf6d0d0a1685132b6fb488b4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c6f67686f7573652d696f2f6c6f67686f7573652d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/loghouse-io/loghouse-laravel)

LogHouse is a logging management system that allows you to store hundreds of gigabytes of logs with almost no configuration and with blazing fast ingestion and querying speed.

This library provides integration for Laravel framework.

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

[](#installation)

You can install the package via composer:

```
composer require loghouse-io/loghouse-laravel
```

Usage
-----

[](#usage)

1. You need to add 2 parameters to the .env file

```
LOGHOUSE_LARAVEL_ACCESS_TOKEN=${LOGHOUSE_LARAVEL_ACCESS_TOKEN}
LOGHOUSE_LARAVEL_DEFAULT_BUCKET_ID=${LOGHOUSE_LARAVEL_DEFAULT_BUCKET_ID}

```

2. Next, add a new log channel to logging.php

```
'channels' => [
        ...
        'loghouse' => [
            'driver' => 'custom',
            'via' => \LoghouseIo\LoghouseLaravel\LoghouseLaravelFactory::class
        ]
```

3. And at the end add this channel to the stack

```
'channels' => [
        ...
        'stack' => [
            'driver' => 'stack',
            'channels' => [...,'loghouse'],
            ...
        ]
```

4. If you want to send logs to another bucket, for example, separate api, web and console logs, you must create a new channel in logging.php, and add bucket\_id to the channel config

```
'channels' => [
        ...
        'loghouse_api' => [
            'driver' => 'custom',
            'via' => \LoghouseIo\LoghouseLaravel\LoghouseLaravelFactory::class,
            'bucket_id' => ${bucket_id}
        ]
```

5. To use the new channel, paste the code into your project

```
Log::channel('loghouse_api')->warning('Api log');
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

Credits
-------

[](#credits)

- [All Contributors](../../contributors)

License
-------

[](#license)

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

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 93.8% 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 ~25 days

Total

6

Last Release

1588d ago

Major Versions

1.0.4 → 5.5.x-dev2022-01-05

PHP version history (2 changes)1.0.0PHP ^7.2.5|^8.0

5.5.x-devPHP &gt;=7.0.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/26fba8d5b1f074fda624306a52e022e2206fcbf464b73e465ada28b1819263a5?d=identicon)[loghouse](/maintainers/loghouse)

---

Top Contributors

[![solovyev-denis](https://avatars.githubusercontent.com/u/19546848?v=4)](https://github.com/solovyev-denis "solovyev-denis (15 commits)")[![olologic](https://avatars.githubusercontent.com/u/1218533?v=4)](https://github.com/olologic "olologic (1 commits)")

---

Tags

loghouse-iologhouse-laravel

### Embed Badge

![Health badge](/badges/loghouse-io-loghouse-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/loghouse-io-loghouse-laravel/health.svg)](https://phpackages.com/packages/loghouse-io-loghouse-laravel)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.2k](/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.2M138](/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)
