PHPackages                             kallencode/laravel-wakatime - 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. [API Development](/categories/api)
4. /
5. kallencode/laravel-wakatime

ActiveLibrary[API Development](/categories/api)

kallencode/laravel-wakatime
===========================

A laravel 5 package to interact with the Wakatime API.

1.0.0(9y ago)42642[1 issues](https://github.com/kallencode/laravel-wakatime/issues)MITPHPPHP ^7.0

Since Jan 21Pushed 8y ago1 watchersCompare

[ Source](https://github.com/kallencode/laravel-wakatime)[ Packagist](https://packagist.org/packages/kallencode/laravel-wakatime)[ Docs](https://github.com/kallencode/laravel-wakatime)[ RSS](/packages/kallencode-laravel-wakatime/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (4)Versions (3)Used By (0)

Wakatime API for laravel
========================

[](#wakatime-api-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/983b4dbf4e371759701bf66bdc8cfb711ef22d3d880463219dff909a5cc9986a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7370617469652f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kallencode/laravel-wakatime)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/2ba072ced2e91dde3a827412432dbcbc79c7330a600ce06a7ef95d8bac0e4b23/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6b616c6c656e636f64652f6c61726176656c2d77616b6174696d652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/kallencode/laravel-wakatime)[![Quality Score](https://camo.githubusercontent.com/76402d101e186dc69d356df65cd755a2ddd2caa1ee36ed36c4230b15efa5f972/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6b616c6c656e636f64652f6c61726176656c2d77616b6174696d652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/kallencode/laravel-wakatime)[![Total Downloads](https://camo.githubusercontent.com/c6c6da8dbe94380d2a851120c1185f518912017f5df611182ba2da167172dc08/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b616c6c656e636f64652f6c61726176656c2d77616b6174696d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kallencode/laravel-wakatime)

Simple package for interacting the the [Wakatime API](https://wakatime.com)

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

[](#installation)

You can install the package via composer:

```
composer require kallencode/laravel-wakatime
```

Install the ServiceProvider.

```
// config/app.php
'providers' => [
    ...
    Kallencode\Wakatime\WakatimeServiceProvider::class,
    ...
];
```

This package also comes with a facade:

```
// config/app.php
'aliases' => [
    ...
    'Wakatime' => Kallencode\Wakatime\WakatimeFacade::class,
    ...
];
```

You can publish the config file of this package with this command:

```
php artisan vendor:publish --provider="Kallencode\Wakatime\WakatimeServiceProvider"
```

The following config file will be published in `config/laravel-wakatime.php`

```
return [

    'apiKey' => env('WAKATIME_API_KEY'),

    'baseURl' => env('WAKATIME_BASE_URL','https://wakatime.com/api/v1/')

];
```

Usage
-----

[](#usage)

```
$userDurations = Wakatime::fetchUserDuration(\Carbon\Carbon::now());
```

or use any not-yet-implemented wakatime API resource:

```
$result = Wakatime::performRequest("new/resource", [
        'date' => \Carbon\Carbon::now()->format('Y-m-d'),
        'project' => 'project'], []);
```

Finding your API key
--------------------

[](#finding-your-api-key)

Go to

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Roelof Kallenkoot](https://github.com/rkallenkoot)
- [All Contributors](../../contributors)

About Kallencode
----------------

[](#about-kallencode)

[Kallencode](https://kallencode.nl)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity59

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

Unknown

Total

1

Last Release

3397d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3198607?v=4)[Roelof Kallenkoot](/maintainers/Rkallenkoot)[@Rkallenkoot](https://github.com/Rkallenkoot)

---

Top Contributors

[![Rkallenkoot](https://avatars.githubusercontent.com/u/3198607?v=4)](https://github.com/Rkallenkoot "Rkallenkoot (5 commits)")

---

Tags

laravelwakatime-apilaravelwakatimekallencode

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kallencode-laravel-wakatime/health.svg)

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

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[flat3/lodata

OData v4.01 Producer for Laravel

96320.9k](/packages/flat3-lodata)[laravel-freelancer-nl/laravel-index-now

Alert search engines of content changes.

5212.1k](/packages/laravel-freelancer-nl-laravel-index-now)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

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