PHPackages                             smallprodapp/yukky-log-php-sdk - 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. smallprodapp/yukky-log-php-sdk

ActiveLibrary

smallprodapp/yukky-log-php-sdk
==============================

Yukky Log SDK for PHP

1.4(6y ago)010MITPHP

Since Sep 10Pushed 6y agoCompare

[ Source](https://github.com/smallprodapp/yukky-log-php-sdk)[ Packagist](https://packagist.org/packages/smallprodapp/yukky-log-php-sdk)[ Docs](https://log.yukkyapp.com)[ RSS](/packages/smallprodapp-yukky-log-php-sdk/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)DependenciesVersions (6)Used By (0)

Yukky Log PHP SDk
=================

[](#yukky-log-php-sdk)

Easy to use SDK to send log to Yukky Log !

For more informations visit

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

[](#installation)

```
composer require smallprodapp/yukky-log-php-sdk

```

**That's it !**

Initialisation
--------------

[](#initialisation)

Somewhere in your code you should add this :

```
require "./vendor/autoload.php";
...
Yukky\YukkyLog.init("", "");

```

This will initialize the SDK.

You can add a third parameter to specify if you want the debug mode.

Send some logs
--------------

[](#send-some-logs)

### The Log class

[](#the-log-class)

To send a Log, you need to create it first.

To do that, you can create a Log object like this :

```
new Yukky\Log("PHP Test", ["PHP", "Test"], "Test php desc", null);

```

The first parameter is the log name, the second is an array of tags, the third is a description and the last one is some infos you want to send, it must be an object.

If you want to create your own log type (not error, warning or info), you can create a FullLog object like this :

```
new Yukky\FullLog("PHP Test", ["PHP", "Test"], "Test php desc", null, "my type");

```

The parameters are the same as Log but you must add another one which is the name of your custom type.

### Error

[](#error)

To send an error log simply add this line :

```
Yukky\YukkyLog.error(new Log("PHP Test", ["PHP", "Test"], "Test php desc", null));
or
Yukky\YukkyLog.error(["name" => "PHP Test", "tags" => ["PHP", "Test"], "desc" => "Test php desc", "infos" => null]);

```

### Warning

[](#warning)

To send a warning log simply add this line :

```
Yukky\YukkyLog.warning(new Log("PHP Test", ["PHP", "Test"], "Test php desc", null));
or
Yukky\YukkyLog.warning(["name" => "PHP Test", "tags" => ["PHP", "Test"], "desc" => "Test php desc", "infos" => null]);

```

### Info

[](#info)

To send an info log simply add this line :

```
Yukky\YukkyLog.info(new Log("PHP Test", ["PHP", "Test"], "Test php desc", null));
or
Yukky\YukkyLog.info(["name" => "PHP Test", "tags" => ["PHP", "Test"], "desc" => "Test php desc", "infos" => null]);

```

### Custom

[](#custom)

To send a custom log simply add this line :

```
Yukky\YukkyLog.custom(new FullLog("PHP Test", ["PHP", "Test"], "Test php desc", null, "my type"));
or
Yukky\YukkyLog.custom(["name" => "PHP Test", "tags" => ["PHP", "Test"], "desc" => "Test php desc", "infos" => null, "type" => "my custom type"]);

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

5

Last Release

2433d ago

### Community

Maintainers

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

---

Top Contributors

[![ElPolito](https://avatars.githubusercontent.com/u/39008166?v=4)](https://github.com/ElPolito "ElPolito (6 commits)")

### Embed Badge

![Health badge](/badges/smallprodapp-yukky-log-php-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/smallprodapp-yukky-log-php-sdk/health.svg)](https://phpackages.com/packages/smallprodapp-yukky-log-php-sdk)
```

PHPackages © 2026

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