PHPackages                             foxxmd/laravel-loggly - 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. foxxmd/laravel-loggly

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

foxxmd/laravel-loggly
=====================

Loggly logging integration for Laravel projects

01.7k4PHP

Since May 24Pushed 9y ago1 watchersCompare

[ Source](https://github.com/foxxmd/laravel-loggly)[ Packagist](https://packagist.org/packages/foxxmd/laravel-loggly)[ RSS](/packages/foxxmd-laravel-loggly/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Loggly
==============

[](#laravel-loggly)

Loggly logging and error integration for Laravel 5. Based on [laravel-rollbar](https://github.com/jenssegers/laravel-rollbar) by jenssegers.

This package is still IN DEVELOPMENT.
-------------------------------------

[](#this-package-is-still-in-development)

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

[](#installation)

Install using composer:

```
composer require FoxxMD/loggly

```

Add the service provider to the `'providers'` array in `config/app.php`:

```
'FoxxMD\Loggly\LogglyServiceProvider',

```

Configuration
-------------

[](#configuration)

This package supports configuration through the services configuration file located in `app/config/services.php`. All configuration variables will be directly passed to Rollbar:

```
'loggly' => [
    'key' => 'your-loggly-token',
    'level' => 'debug',
    'tags' => ['your-tokens]
],

```

The level variable defines the minimum log level at which log messages are sent to Loggly.

Usage
-----

[](#usage)

To automatically monitor exceptions, simply use the `Log` facade in your error handler in `app/Exceptions/Handler.php`:

```
public function report(Exception $e)
{
    \Log::error($e);

    return parent::report($e);
}

```

For Laravel 4 installations, this is located in `app/start/global.php`:

```
App::error(function(Exception $exception, $code)
{
    Log::error($exception);
});

```

Your other log messages will also be sent to Loggly:

```
\Log::debug('Here is some debug information');

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% 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.

### Community

Maintainers

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

---

Top Contributors

[![FoxxMD](https://avatars.githubusercontent.com/u/4663766?v=4)](https://github.com/FoxxMD "FoxxMD (5 commits)")[![harry-huddle](https://avatars.githubusercontent.com/u/11855150?v=4)](https://github.com/harry-huddle "harry-huddle (1 commits)")

### Embed Badge

![Health badge](/badges/foxxmd-laravel-loggly/health.svg)

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

###  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)[ekino/newrelic-bundle

Integrate New Relic into Symfony2

28111.2M8](/packages/ekino-newrelic-bundle)

PHPackages © 2026

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