PHPackages                             anascloud/zkteko - 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. anascloud/zkteko

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

anascloud/zkteko
================

A Laravel package for ZKTeco biometric devices, ported from a Python implementation.

10PHP

Since Jun 14Pushed 1mo agoCompare

[ Source](https://github.com/anascloud/zkteko)[ Packagist](https://packagist.org/packages/anascloud/zkteko)[ RSS](/packages/anascloud-zkteko/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Zkteko Laravel Package
======================

[](#zkteko-laravel-package)

A Laravel package for ZKTeco biometric devices, ported from a Python implementation.

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

[](#installation)

You can install the package via composer:

```
composer require anascloud/zkteko
```

Configuration
-------------

[](#configuration)

Publish the configuration file:

```
php artisan vendor:publish --provider="Anascloud\Zkteko\ZktekoServiceProvider" --tag="zkteko-config"
```

Set your device details in your `.env` file:

```
ZKTEKO_IP=192.168.10.79
ZKTEKO_PORT=4370
ZKTEKO_PASSWORD=2837
```

Usage
-----

[](#usage)

### Direct Usage

[](#direct-usage)

```
use Anascloud\Zkteko\ZKTeco;

$zk = new ZKTeco('192.168.10.79', 4370, 2837);

if ($zk->connect()) {
    $attendance = $zk->getAttendance();

    foreach ($attendance as $log) {
        // Process logs
    }

    $zk->disconnect();
}
```

### Facade Usage

[](#facade-usage)

```
use Anascloud\Zkteko\Facades\Zkteko;

if (Zkteko::connect()) {
    $attendance = Zkteko::getAttendance();
    Zkteko::disconnect();
}
```

Credits
-------

[](#credits)

- Author: [anascloud](https://github.com/anascloud)

License
-------

[](#license)

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

###  Health Score

20

—

LowBetter than 12% of packages

Maintenance60

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/261739874?v=4)[Md Anisur Rahaman](/maintainers/anascloud)[@anascloud](https://github.com/anascloud)

---

Top Contributors

[![anascloud](https://avatars.githubusercontent.com/u/261739874?v=4)](https://github.com/anascloud "anascloud (1 commits)")

### Embed Badge

![Health badge](/badges/anascloud-zkteko/health.svg)

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

###  Alternatives

[norkunas/youtube-dl-php

youtube-dl / yt-dlp wrapper for php

514356.8k18](/packages/norkunas-youtube-dl-php)[theodo-evolution/legacy-wrapper-bundle

40124.9k](/packages/theodo-evolution-legacy-wrapper-bundle)

PHPackages © 2026

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