PHPackages                             idekite/flexcodesdk - 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. idekite/flexcodesdk

ActiveLibrary

idekite/flexcodesdk
===================

:description

2.1.0(7y ago)31252[1 issues](https://github.com/idekite/flexcodesdk/issues)MITPHP

Since Sep 4Pushed 7y ago1 watchersCompare

[ Source](https://github.com/idekite/flexcodesdk)[ Packagist](https://packagist.org/packages/idekite/flexcodesdk)[ Docs](https://github.com/idekite/flexcodesdk)[ RSS](/packages/idekite-flexcodesdk/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (7)Dependencies (3)Versions (10)Used By (0)

flexcodesdk
===========

[](#flexcodesdk)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1c484c984b37d904ec4cd0555d44bccc6ed6369d777b21930669a02621a7de03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6964656b6974652f666c6578636f646573646b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/idekite/flexcodesdk)[![Total Downloads](https://camo.githubusercontent.com/a7842c39f5e5baed8eb1adb8a1401d5e902ec78fb091b03c5b794e04abe422da/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6964656b6974652f666c6578636f646573646b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/idekite/flexcodesdk)[![Build Status](https://camo.githubusercontent.com/d489518378f57955825446df6bf972cd72a0daed99e06b3b3d2e195e446d7dfe/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6964656b6974652f666c6578636f646573646b2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/idekite/flexcodesdk)[![StyleCI](https://camo.githubusercontent.com/cb13a877afd1dbe223c631789c3f922d3ace958fdb334a9cce9b26afefbc2ebd/68747470733a2f2f7374796c6563692e696f2f7265706f732f31323334353637382f736869656c64)](https://styleci.io/repos/12345678)

This is where your description should go. Take a look at [contributing.md](contributing.md) to see a to do list.

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

[](#installation)

Via Composer

```
$ composer require idekite/flexcodesdk:dev-master
```

Usage
-----

[](#usage)

Publish Vendor

```
$ php artisan vendor:publish
```

Choose 'flexcodesdk-config' and 'flexcodesdk-models'

Migrate Database

```
$ php artisan:migrate
```

Blade

```
{{ flexcodesdk::getRegistrationLink($user_id) }}
```

Edit app/Providers/EventServiceProvider.php

```
Event::listen('fingerprints.register', function($data)
{
    // Do some stuff before informing URL to user

    // inform SDK to open this URL
    echo url('test?message=' . $data['message']);
});

Event::listen('fingerprints.verify', function($data){
    $action = $data['extras']['action'];
    switch ($action) {
        case 'login':
            // Log user to database here, i.e: Adding new session etc.
            // Example:
            // Session::add($data['user']->id);

            // Then tell SDK to open this page
            echo action('testController@index', array('message' => $data['message']));
            break;

        case 'transactions.confirm':
            // mark transaction as verified, example usage:

            // $transaction = Transaction::find($data['extras']['transaction_id']);
            // $transaction->verified = true;
            // $transaction->save();

            // Then tell SDK to open this page
            echo route('transactions',
                array(
                    'message' => $data['message'],
                    'id' => $data['extras']['transaction_id'])
                );
            break;
    }
});
```

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Feri Harjulianto](https://github.com/idekite)
- [All Contributors](../../contributors%5D)

License
-------

[](#license)

MIT. Please see the [license file](license.md) for more information.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity68

Established project with proven stability

 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

9

Last Release

2809d ago

Major Versions

1.0.6 → 2.02018-09-05

### Community

Maintainers

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

---

Top Contributors

[![harjulianto](https://avatars.githubusercontent.com/u/8220126?v=4)](https://github.com/harjulianto "harjulianto (11 commits)")

---

Tags

laravelflexcodesdk

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/idekite-flexcodesdk/health.svg)

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

###  Alternatives

[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[highsolutions/eloquent-sequence

A Laravel package for easy creation and management sequence support for Eloquent models with elastic configuration.

121130.3k](/packages/highsolutions-eloquent-sequence)[glhd/linen

21135.6k](/packages/glhd-linen)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

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