PHPackages                             lifeonscreen/laravel-log-keeper - 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. lifeonscreen/laravel-log-keeper

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

lifeonscreen/laravel-log-keeper
===============================

Laravel Log Keeper helps rotating you logs while storing them anywhere you want with custom local/remote retention policies

v1.1.0(7y ago)22.9kPHP

Since Mar 12Pushed 7y ago2 watchersCompare

[ Source](https://github.com/LifeOnScreen/laravel-log-keeper)[ Packagist](https://packagist.org/packages/lifeonscreen/laravel-log-keeper)[ RSS](/packages/lifeonscreen-laravel-log-keeper/feed)WikiDiscussions master Synced today

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

Laravel Log Keeper
==================

[](#laravel-log-keeper)

[![Latest Version](https://camo.githubusercontent.com/8f94ca5facdfe9a719c9490f291b1d0721b95143cec008a9213af6299916df61/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6c6966656f6e73637265656e2f6c61726176656c2d6c6f672d6b65657065722e7376673f7374796c653d666c61742d737175617265)](https://github.com/lifeonscreen/laravel-log-keeper/releases)[![Total Downloads](https://camo.githubusercontent.com/d2690e2e9430759430ac267b2fa8ed4c5bf826933ce156a2e0d38f5c63ea0aff/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c6966656f6e73637265656e2f6c61726176656c2d6c6f672d6b65657065722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lifeonscreen/laravel-log-keeper)

Laravel Log Keeper helps rotating your logs while storing them anywhere you want with custom local/remote retention policies.

A typical usage of Laravel Log Keeper would be to set a cron job to run daily and store local logs in a S3 bucket, (s)ftp, Dropbox or any other FileSystem driver

You can define a local and/or a remote retention and/or upload after remote days, which by default is 7, 30 and 1 day subsequently.

- Files older than 1 day will be compressed and uploaded to remote disk.
- Local files older than 7 days removed from local disk.
- Remote files older than 31 (remote days+upload after days) days will be permanently deleted from the remote disk.

### Highlights

[](#highlights)

- Have full control of where/when/how you archive your logs
- Prevent your server from running out of space
- Custom retention policies for Local and Remote archiving

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

[](#installation)

Laravel Log Keeper is available via Composer:

```
{
    "require": {
        "lifeonscreen/laravel-log-keeper": "1.*"
    }
}
```

Setup
-----

[](#setup)

### Laravel

[](#laravel)

#### Register Service Provider

[](#register-service-provider)

```
// config/app.php

'providers' => [
    ...
    LifeOnScreen\LaravelLogKeeper\Providers\LaravelServiceProvider::class,
    ...
],
```

#### Register the cron job

[](#register-the-cron-job)

```
// app/Console/Kernel.php

protected $commands = [
    ...
    \LifeOnScreen\LaravelLogKeeper\Commands\LogKeeper::class
    ...
];

...

protected function schedule(Schedule $schedule)
{
    ...
    $schedule->command('laravel-log-keeper')->daily();
    ...
}
```

### Log Format

[](#log-format)

To use Laravel Log Keeper your log files have to be in the daily format, which is defined in your `config/app.php`

```
    ...
    'log' => 'daily',
    ...
```

### Environment

[](#environment)

You can override the following variables placing them in your .env

Example:

```
# .env
...

LARAVEL_LOG_KEEPER_REMOTE_DISK           = "s3"
LARAVEL_LOG_KEEPER_LOCAL_RETENTION_DAYS  = 3
LARAVEL_LOG_KEEPER_REMOTE_RETENTION_DAYS = 15
LARAVEL_LOG_KEEPER_REMOTE_PATH           = "myproject1-prod-01"

...

```

Can publish config with this command:

```
php artisan vendor:publish --provider=LifeOnScreen\LaravelLogKeeper\Providers\LaravelServiceProvider

```

Config file:

```
// ----------------------------------------------------------------------------
    // Enable or Disable the Laravel Log Keeper.
    // If it is set to false, no operations will be performed and it will be logged
    // if the logs are enabled
    // ----------------------------------------------------------------------------
    'enabled'                     => env('LARAVEL_LOG_KEEPER_ENABLED', true),

    // ----------------------------------------------------------------------------
    // Enable or Disable the Laravel Log Keeper for remote operations.
    // if it is set to false, the local files older than the local retention will be
    // delete without being uploaded to the remote disk
    // ----------------------------------------------------------------------------
    'enabled_remote'              => env('LARAVEL_LOG_KEEPER_ENABLED_REMOTE', true),

    // ----------------------------------------------------------------------------
    // Where in the remote location it will be stored. You can leave it blank
    // or specify a custom folder like proj1-prod or proj1-integ so that you could
    // use the same s3 bucket for storing the logs in different environments
    // ----------------------------------------------------------------------------
    'remote_path'                 => rtrim(env('LARAVEL_LOG_KEEPER_REMOTE_PATH'), '/'),

    // ----------------------------------------------------------------------------
    // How many days a file will be kept on the local disk before
    // being uploaded to the remote disk.
    // Default is 7 days.
    // Local files with more than 7 days will be compressed using bzip2 and uploaded
    // to the remote disk. They will also be deleted from the local disk after being
    // uploaded
    // If value is set to 0 logs will be kept forever.
    // ----------------------------------------------------------------------------
    'local_retention_days'        => env('LARAVEL_LOG_KEEPER_LOCAL_RETENTION_DAYS', 7),

    // ----------------------------------------------------------------------------
    // When file be uploaded to remote location.
    // Default is 1 day.
    // ----------------------------------------------------------------------------
    'upload_to_remote_after_days' => env('LARAVEL_LOG_KEEPER_UPLOAD_TO_REMOTE_DAYS', 1),

    // ----------------------------------------------------------------------------
    // How many days a file will be kept on the remote for.
    // The days here means days after the upload on server. So 30 would actually
    // 30 + 1 = 31
    // Only files older than 31 days would be deleted from the remote disk
    // If value is set to 0 logs will be kept forever.
    // ----------------------------------------------------------------------------
    'remote_retention_days'       => env('LARAVEL_LOG_KEEPER_REMOTE_RETENTION_DAYS', 30),

    'remote_retention_days_calculated' =>
        env('LARAVEL_LOG_KEEPER_REMOTE_RETENTION_DAYS', 30) +
        env('LARAVEL_LOG_KEEPER_UPLOAD_TO_REMOTE_DAYS', 1),

    // ----------------------------------------------------------------------------
    // Which config/filesystems.php disk will be used for remote disk.
    // This would be typically a AWS S3 Disk, (s)ftp, Dropbox or any other configured
    // disk that will store the old logs
    // ----------------------------------------------------------------------------
    'remote_disk'                      => env('LARAVEL_LOG_KEEPER_REMOTE_DISK'),

    // ----------------------------------------------------------------------------
    // Define whether Laravel Log Keeper will log actions or not.
    // The log will be stored in the logs folders with name
    // laravel-log-keeper-{yyyy-mm-dd}.log
    // ----------------------------------------------------------------------------
    'log'                              => env('LARAVEL_LOG_KEEPER_LOG', true)
```

Security
--------

[](#security)

If you discover any security related issues, please constant us directly.

Credits
-------

[](#credits)

- [Mathias Grimm](https://github.com/mathiasgrimm)
- [Jani Cerar](https://github.com/janicerar)

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 87% 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 ~119 days

Recently: every ~207 days

Total

8

Last Release

2881d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/38758825?v=4)[LifeOnScreen](/maintainers/LifeOnScreen)[@LifeOnScreen](https://github.com/LifeOnScreen)

---

Top Contributors

[![mathiasgrimm](https://avatars.githubusercontent.com/u/450069?v=4)](https://github.com/mathiasgrimm "mathiasgrimm (40 commits)")[![janicerar](https://avatars.githubusercontent.com/u/29040621?v=4)](https://github.com/janicerar "janicerar (5 commits)")[![eblount](https://avatars.githubusercontent.com/u/1424719?v=4)](https://github.com/eblount "eblount (1 commits)")

---

Tags

logftplaravels3sftpremotedropboxdiskrotationdriveretention

### Embed Badge

![Health badge](/badges/lifeonscreen-laravel-log-keeper/health.svg)

```
[![Health](https://phpackages.com/badges/lifeonscreen-laravel-log-keeper/health.svg)](https://phpackages.com/packages/lifeonscreen-laravel-log-keeper)
```

###  Alternatives

[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2931.7M62](/packages/creocoder-yii2-flysystem)[backup-manager/symfony

A simple database backup manager for Symfony2 with support for S3, Rackspace, Dropbox, FTP, SFTP.

119293.7k3](/packages/backup-manager-symfony)

PHPackages © 2026

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