PHPackages                             kouroo/loggy - 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. kouroo/loggy

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

kouroo/loggy
============

Send your php log to loggy

010PHP

Since Nov 22Pushed 2y ago2 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

\--

About Loggy ✌️
--------------

[](#about-loggy-️)

Loggy is a web platform to centralize and track every logs of your website in order to monitor and alert much better !

- Simple and fast installation, only 2 minutes
- Usable with backend and/or frontend stack
- Quick installation for Laravel and Symfony (much more very soon)
- Also usable for frontend project only
- Secure with static token or dynamic bearer token
- IP restriction to allow only your domains
- Real-time alert

Loggy is simple, fast and smart because it can alert you in real time and help you to resolve your bug. Don't let your logs faar away on your server !

How it works 🤓
--------------

[](#how-it-works-)

**Step 1 :**

- Create an account on [logmanager.kouroo.fr](https://logmanager.kouroo.fr)
- Then, add the first website that you want to monitor and track all the logs.
- Enter the name of the website, the URL and the allowed IPs address and that's it !

It will give you 2 things :

- UUID website
- Static Site Token

**Step 2 :**Add the package in your project :

```
composer require kouroo/loggy:dev-master

```

### Laravel Configuration

[](#laravel-configuration)

Add the following variables in your .env file :

```
# Loggy configuration
LOGGY_SITE_ID=
LOGGY_SITE_TOKEN=

```

Then, add two lines in your app\\Exceptions\\Handler.php file :

```
use Kouroo\Loggy\Helper\Loggy; reportable(function (Throwable  $e) {
	    Loggy::sendException($e);
