PHPackages                             nowo-tech/time-track-bundle - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. nowo-tech/time-track-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

nowo-tech/time-track-bundle
===========================

Symfony bundle for personal and team time tracking with browser extension and Tauri desktop agent APIs

v1.3.0(2w ago)01031MITPHP &gt;=8.2 &lt;8.6

Since Jul 6Compare

[ Source](https://github.com/nowo-tech/TimeTrackBundle)[ Packagist](https://packagist.org/packages/nowo-tech/time-track-bundle)[ Docs](https://github.com/nowo-tech/TimeTrackBundle)[ RSS](/packages/nowo-tech-time-track-bundle/feed)WikiDiscussions Synced 1w ago

READMEChangelog (4)Dependencies (68)Versions (11)Used By (1)

TimeTrack Bundle
================

[](#timetrack-bundle)

[![CI](https://github.com/nowo-tech/TimeTrackBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/nowo-tech/TimeTrackBundle/actions/workflows/ci.yml) [![Packagist Version](https://camo.githubusercontent.com/428dcbad8795b5ede9eb6dab7427c3255e88c7dc759431d7a0a08a559f0c13cf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f776f2d746563682f74696d652d747261636b2d62756e646c652e7376673f7374796c653d666c6174)](https://packagist.org/packages/nowo-tech/time-track-bundle) [![Packagist Downloads](https://camo.githubusercontent.com/a94195880977344875787a983347a425de8c730c8f91c49bd10e9a30e3cda030/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f776f2d746563682f74696d652d747261636b2d62756e646c652e737667)](https://packagist.org/packages/nowo-tech/time-track-bundle) [![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE) [![PHP](https://camo.githubusercontent.com/3f99b197569aa2dcfbefff17ecc68d74098e7f929d8b52dc40f3a898f740eae1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242343f6c6f676f3d706870)](https://php.net) [![Symfony](https://camo.githubusercontent.com/1a126614274d9b3881d3583579aa40bfbc1b85ae18daf0dc9390bf413426abfb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53796d666f6e792d372e34253242253230253743253230382e30253230253743253230382e312532422d3030303030303f6c6f676f3d73796d666f6e79)](https://symfony.com) [![GitHub stars](https://camo.githubusercontent.com/10d3121c912fcee88ca20aeec26f4846f56b93a9ec399a5eb97104c54f277f8b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6e6f776f2d746563682f74696d652d747261636b2d62756e646c652e7376673f7374796c653d736f6369616c266c6162656c3d53746172)](https://github.com/nowo-tech/TimeTrackBundle) [![Coverage](https://camo.githubusercontent.com/cd0704b56f1d56def350b6d0164316307bb2f47834225fd85443b6fb0059bc73/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f7665726167652d3130302532352d627269676874677265656e)](#tests-and-coverage)

> ⭐ **Found this useful?** Give it a **star** on [GitHub](https://github.com/nowo-tech/TimeTrackBundle) so more developers can find it.

Symfony bundle for **personal and team time tracking**: one active timer per user, task references via `TaskBoardBundle`, browser extension API, and Tauri desktop agent API.

Features
--------

[](#features)

- Web UI at `/tools/time-track` (timer + reports)
- REST API for browser extension and Tauri desktop (`Bearer` auth)
- Single active timer per user (409 on conflict)
- Teams and managers v1 via `TeamContextProviderInterface`
- Task integration via `TaskProviderInterface` (designed for `nowo-tech/task-board-bundle`)
- Symfony events for timer start/stop and entry ACL

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

[](#installation)

```
composer require nowo-tech/time-track-bundle
```

```
# config/packages/nowo_time_track.yaml
nowo_time_track:
    user_class: App\Entity\User
    clients:
        enabled: true
```

See [Installation](docs/INSTALLATION.md).

Demo
----

[](#demo)

Integrated demo with **TaskBoardBundle** (kanban + timer):

```
make -C demo up-symfony8
# Demo started at: http://localhost:8024/tools/time-track
```

- Timer UI: `/tools/time-track`
- Task board: `/tools/task-board`
- Login: `demo@example.com` / `demo`

With TaskBoard only, configure `nowo_time_track.task_provider: nowo_task_board.task_provider` — see [TaskBoard integration](docs/TASK-BOARD-INTEGRATION.md).

Documentation
-------------

[](#documentation)

- [Installation](docs/INSTALLATION.md)
- [Configuration](docs/CONFIGURATION.md)
- [Usage](docs/USAGE.md)
- [Browser extension](docs/BROWSER-EXTENSION.md)
- [Desktop agent (Tauri)](docs/DESKTOP-AGENT.md) — `desktop/` tray app
- [TaskBoard integration](docs/TASK-BOARD-INTEGRATION.md)
- [Contributing](docs/CONTRIBUTING.md)
- [Changelog](docs/CHANGELOG.md)
- [Upgrading](docs/UPGRADING.md)
- [Release process](docs/RELEASE.md)
- [Security](docs/SECURITY.md)
- [Engram](docs/ENGRAM.md)
- [Spec-driven development](docs/SPEC-DRIVEN-DEVELOPMENT.md)
- [GitHub Spec Kit](docs/SPEC-KIT.md)

Tests and coverage
------------------

[](#tests-and-coverage)

```
make test
make test-coverage
make release-check
```

- **PHP:** 100% lines (justified exclusions: controllers, Doctrine repositories/listeners, integration interfaces)
- **TS/JS:** N/A (desktop agent lives in `desktop/`, outside bundle PHP coverage)
- **Python:** N/A

License
-------

[](#license)

MIT — see [LICENSE](LICENSE).

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance96

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

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

Total

10

Last Release

19d ago

### Community

Maintainers

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

---

Tags

symfonytime trackingSymfony Bundleproductivitytimesheettask-board

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/nowo-tech-time-track-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/nowo-tech-time-track-bundle/health.svg)](https://phpackages.com/packages/nowo-tech-time-track-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.3M431](/packages/easycorp-easyadmin-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1617.3k16](/packages/2lenet-crudit-bundle)[sylius/sylius

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

8.5k6.0M780](/packages/sylius-sylius)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.9M536](/packages/pimcore-pimcore)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9626.1k75](/packages/open-dxp-opendxp)[contao/core-bundle

Contao Open Source CMS

1301.7M3.1k](/packages/contao-core-bundle)

PHPackages © 2026

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