PHPackages                             eoko/text-kernel - 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. eoko/text-kernel

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

eoko/text-kernel
================

1.0.1(8y ago)25.0k3[1 issues](https://github.com/eoko/text-kernel/issues)[1 PRs](https://github.com/eoko/text-kernel/pulls)PHP

Since Oct 2Pushed 2y ago1 watchersCompare

[ Source](https://github.com/eoko/text-kernel)[ Packagist](https://packagist.org/packages/eoko/text-kernel)[ RSS](/packages/eoko-text-kernel/feed)WikiDiscussions master Synced 2mo ago

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

TextKernel API
==============

[](#textkernel-api)

This is a small implementation of the sourcebox extract API
Contributions are welcome.

Usage with Symfony
------------------

[](#usage-with-symfony)

### Configuration

[](#configuration)

In your service.yml

```
    textkernel.factory:
        class: Eoko\TextKernel\Factory\TextKernelFactory

    textkernel.api.servicebox:
        class: Eoko\TextKernel\Api\SourceboxApi
        factory: [ '@textkernel.factory', createSourceboxApi ]
        arguments:
            - '%textkernel_account%'
            - '%textkernel_username%'
            - '%textkernel_password%'
```

In your parameters.yml

```
parameters:
    textkernel_account: change_me
    textkernel_username: change_me
    textkernel_password: ######
```

### Usage

[](#usage)

In a container aware class

```
    $api = $this->get('textkernel.api.servicebox');

    try {
        /** @param \Eoko\TextKernel\Model\CvModel $cv */
        $cv = $api->extractFromFile($filepath);
        // or
        $cv = $api->extract($cvBuffer);
    } catch(\Exception $e) {
        //handle errors
    }
```

Raw usage
---------

[](#raw-usage)

```
    use Eoko\TextKernel\Factory\TextKernelFactory;

    $account = 'change_me';
    $username = 'change_me';
    $password = '########';

    $factory = new TextKernelFactory();
    $api = $factory->createSourceboxApi($account, $username, $password);

    try {
        /** @param \Eoko\TextKernel\Model\CvModel $cv */
        $cv = $api->extractFromFile($filepath);
        // or
        $cv = $api->extract($cvBuffer);
    } catch(\Exception $e) {
        //handle errors
    }
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

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

Total

2

Last Release

3095d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5574f099c9ba539d4018f5735650cc47b3312ea31a0d5b15c0d7e072efe7bdc9?d=identicon)[iam\_merlin](/maintainers/iam_merlin)

---

Top Contributors

[![Loxic](https://avatars.githubusercontent.com/u/9270812?v=4)](https://github.com/Loxic "Loxic (3 commits)")

---

Tags

text-kernel

### Embed Badge

![Health badge](/badges/eoko-text-kernel/health.svg)

```
[![Health](https://phpackages.com/badges/eoko-text-kernel/health.svg)](https://phpackages.com/packages/eoko-text-kernel)
```

###  Alternatives

[shlinkio/shlink

A self-hosted and PHP-based URL shortener application with CLI and REST interfaces

4.8k4.3k](/packages/shlinkio-shlink)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[dhlparcel/magento2-plugin

DHL Parcel plugin for Magento 2

11180.5k2](/packages/dhlparcel-magento2-plugin)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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