PHPackages                             mibexx/php-time-tracking - 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. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. mibexx/php-time-tracking

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

mibexx/php-time-tracking
========================

Tracks php execution time

1.1.1(6y ago)06MITPHPPHP &gt;7.1

Since Feb 28Pushed 6y ago1 watchersCompare

[ Source](https://github.com/mibexx/php-time-tracking)[ Packagist](https://packagist.org/packages/mibexx/php-time-tracking)[ RSS](/packages/mibexx-php-time-tracking/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (2)Versions (5)Used By (0)

php-time-tracking
=================

[](#php-time-tracking)

Tracks execution time in php applications.

Init
----

[](#init)

```
use Mibexx\TimeTracking\Adapter\TimeTracking;

TimeTracking::init();
```

Usage
-----

[](#usage)

```
use Mibexx\TimeTracking\Adapter\TimeTracking;

TimeTracking::track('First');
    usleep(1000000);
    TimeTracking::track('Second');
        usleep(1200000);
    TimeTracking::stop();
    TimeTracking::track('Second');
        usleep(1300000);
    TimeTracking::stop();
    TimeTracking::track('Third');
        usleep(1400000);
        TimeTracking::track('Fourth');
            usleep(1500000);
        TimeTracking::stop();
    TimeTracking::stop();
TimeTracking::stop();
```

Get Results
-----------

[](#get-results)

```
use Mibexx\TimeTracking\Adapter\TimeTracking;

$trackingResults = TimeTracking::getTrackings();

echo 'FunctionCounterTimes';
foreach ($trackingResults as $ident => $results) {
    echo sprintf(
        '%s%s%s',
        $ident,
        count($results['trackings']),
        implode('', array_column($results['trackings'], 'time'))
    );
}
echo '';
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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

Total

4

Last Release

2270d ago

PHP version history (2 changes)1.0.0PHP &gt;7.2

1.0.1PHP &gt;7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/9ba15174c6a847524e2118ff1b34670252159fa2bee234292381e090e3f1b3a1?d=identicon)[mibexx](/maintainers/mibexx)

---

Top Contributors

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

###  Code Quality

TestsCodeception

### Embed Badge

![Health badge](/badges/mibexx-php-time-tracking/health.svg)

```
[![Health](https://phpackages.com/badges/mibexx-php-time-tracking/health.svg)](https://phpackages.com/packages/mibexx-php-time-tracking)
```

###  Alternatives

[symfony/stopwatch

Provides a way to profile code

2.8k387.2M918](/packages/symfony-stopwatch)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k29](/packages/fruitcake-laravel-debugbar)[spatie/ignition

A beautiful error page for PHP applications.

510147.6M69](/packages/spatie-ignition)[jokkedk/webgrind

Webgrind is a Xdebug profiling web frontend in PHP5. It implements a subset of the features of kcachegrind and installs in seconds and works on all platforms. For quick'n'dirty optimizations it does the job.

3.3k193.0k](/packages/jokkedk-webgrind)[koriym/printo

An object graph visualizer.

1421.8M2](/packages/koriym-printo)[soloterm/dumps

A Laravel command to intercept dumps from your Laravel application.

125285.7k3](/packages/soloterm-dumps)

PHPackages © 2026

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