PHPackages                             reaimagine/laravel-cek - 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. [Admin Panels](/categories/admin)
4. /
5. reaimagine/laravel-cek

ActiveLibrary[Admin Panels](/categories/admin)

reaimagine/laravel-cek
======================

00PHP

Since Apr 3Pushed 4y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

laravel package for cek
=======================

[](#laravel-package-for-cek)

installation
------------

[](#installation)

You can install the package via composer:

```
composer require reaimagine/laravel-cek
```

If you are using Laravel 5.5 or later, the service provider will automatically be discovered.

On earlier versions, you need to do that manually. You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    Reaimagine\LaravelCek\LaravelCekServiceProvider::class
];
```

You can then publish the configuration file:

```
php artisan vendor:publish --provider "Reaimagine\LaravelCek\LaravelCekServiceProvider"
```

Setup
-----

[](#setup)

### Prepare the logger configuration

[](#prepare-the-logger-configuration)

You must add a new channel to your `config/logging.php` file:

```
// config/logging.php
'channels' => [
    //...
    'laravel-cek' => [
        'driver' => 'custom',
        'via'    => Reaimagine\LaravelCek\Logger::class,
        'level'  => 'debug',
    ],
];
```

#### Add the channel on top of other channels

[](#add-the-channel-on-top-of-other-channels)

Add the channel to the stack in the `config/logging.php` configuration:

```
// config/logging.php
'channels' => [
    //...
    'stack' => [
        'driver'   => 'stack',
        'channels' => ['single', 'laravel-cek'],
    ],
];
```

Then make sure the logging channel is set to stack in your `.env` file:

```
LOG_CHANNEL=stack

```

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity27

Early-stage or recently created project

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/faa933d69fc5caab8a243f38b12f2ecee11df3a14897c59a642f729894e6a977?d=identicon)[nrikhwndn](/maintainers/nrikhwndn)

### Embed Badge

![Health badge](/badges/reaimagine-laravel-cek/health.svg)

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

PHPackages © 2026

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