PHPackages                             daniels/fuellogger - 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. daniels/fuellogger

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

daniels/fuellogger
==================

0.3.1(4y ago)0301MITPHP

Since Apr 5Pushed 1y ago1 watchersCompare

[ Source](https://github.com/SeifertDaniel/fuellogger)[ Packagist](https://packagist.org/packages/daniels/fuellogger)[ RSS](/packages/daniels-fuellogger/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (14)Versions (6)Used By (1)

Dashboard und Preisbenachrichtigungen anhand der Benzinpreisinformationen von

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

[](#installation)

```
./vendor/bin/doctrine-migrations migrations:migrate --configuration ./src/Migrations/migrations.php --db-configuration ./src/Migrations/migrations_db.php

```

importieren von Bestandsdaten
-----------------------------

[](#importieren-von-bestandsdaten)

Tankerkönig stellt in der Historie unter  Bestandsdaten zur Verfügung. Diese können importiert werden. Lege dazu eine Importtabelle an:

```
CREATE TABLE `import` (
  `datetime` datetime NOT NULL,
  `stationid` char(36) NOT NULL,
  `diesel` float(4,3) NOT NULL,
  `e5` float(4,3) NOT NULL,
  `e10` float(4,3) NOT NULL,
  `dieselchange` int(1) NOT NULL,
  `e5change` int(1) NOT NULL,
  `e10change` int(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

ALTER TABLE `import`
  ADD KEY `stationid` (`stationid`);

```

Importiere die CSV-Daten in diese Tabelle.

Mit den folgenden Abfragen werden die Preisdaten in die Struktur dieses Pakets übertragen:

```
-- E5

INSERT INTO prices (
SELECT UUID(), st.ID, 'e5', im.e5, im.datetime, im.datetime FROM `import` im
LEFT JOIN stations st ON im.stationid = st.TKID
WHERE e5change = 1 AND st.TKID IS NOT NULL
);

-- E10

INSERT INTO prices (
SELECT UUID(), st.ID, 'e10', im.e10, im.datetime, im.datetime FROM `import` im
LEFT JOIN stations st ON im.stationid = st.TKID
WHERE e10change = 1 AND st.TKID IS NOT NULL
);

-- Diesel

INSERT INTO prices (
SELECT UUID(), st.ID, 'diesel', im.diesel, im.datetime, im.datetime FROM `import` im
LEFT JOIN stations st ON im.stationid = st.TKID
WHERE dieselchange = 1 AND st.TKID IS NOT NULL
);

```

Im Anschluss kann die import Tabelle wieder gelöscht werden.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 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 ~6 days

Total

5

Last Release

1471d ago

### Community

Maintainers

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

---

Top Contributors

[![SeifertDaniel](https://avatars.githubusercontent.com/u/9882400?v=4)](https://github.com/SeifertDaniel "SeifertDaniel (162 commits)")

### Embed Badge

![Health badge](/badges/daniels-fuellogger/health.svg)

```
[![Health](https://phpackages.com/badges/daniels-fuellogger/health.svg)](https://phpackages.com/packages/daniels-fuellogger)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)

PHPackages © 2026

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