PHPackages                             integration-helper/process-runner - 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. integration-helper/process-runner

ActiveMagento2-module[Utility &amp; Helpers](/categories/utility)

integration-helper/process-runner
=================================

Integration Helper. Process Runner

1.0.4(5mo ago)026OSL-3.0PHPPHP ~8.1.0||~8.2.0

Since Dec 6Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/Vladwww2015/process-runner)[ Packagist](https://packagist.org/packages/integration-helper/process-runner)[ RSS](/packages/integration-helper-process-runner/feed)WikiDiscussions main Synced today

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

Usage
-----

[](#usage)

### 1) Create di.xml

[](#1-create-dixml)

```

            true
            10

                IntegrationHelper\SomeExtension\Model\ProcessMultirun
                IntegrationHelper\SomeExtension\Model\ProcessSinglerun

```

### 2) Save yours profile

[](#2-save-yours-profile)

```
use IntegrationHelper\ProcessRunner\Model\ProcessProfileManager
use Example\SomeExtension\Model\RunImportProfile

class ClassName {
    public function __construct(
        ...
        protected ProcessProfileManager $processProfileManager
    ){}

    private function runMultiProcessing()
    {
        $result = [...,...,...];
        $total = count($result);

        $batchSize = ceil($total / 50);
        $previousBatchSize = 1;
        $i = 1;
        while ($i  'unique_profile_name_here',
                \IntegrationHelper\ProcessRunner\Api\ConstraintsInterface::CODE => $code,
                \IntegrationHelper\ProcessRunner\Api\ConstraintsInterface::MODEL => RunImportProfile::class,
                \IntegrationHelper\ProcessRunner\Api\ConstraintsInterface::MODEL_METHOD_ARGUMENTS => json_encode(
                    [
                        'profile' => 'unique_profile_name_here',
                        'batch' => $batch
                    ]
                )
            ];
            $i++;
            $this->processProfileManager->create($data);
        }
    }
}
```

### 3) Implement IntegrationHelper\\ProcessRunner\\Model\\ModelInstanceInterface in yours profile Model

[](#3-implement-integrationhelperprocessrunnermodelmodelinstanceinterface-in-yours-profile-model)

```
namespace Example\SomeExtension\Model;

class RunImportProfile implements \IntegrationHelper\ProcessRunner\Model\ModelInstanceInterface
{
    public function runProcess(array $params = []): bool
    {
        $profile = $params['profile'] ?? false;
        $batch = $params['batch'] ?? false;

        if(!$profile) return;

        $result = false;
        try {
            // Code here
        } catch (\Exception $e) {
            $result = true;
        }

        return !$result;
    }
}
```

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance71

Regular maintenance activity

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Every ~137 days

Total

4

Last Release

162d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/827376d44a1aa3c92c966ae0907687568a3a67ac0511d6705b9f9cb27dba39dd?d=identicon)[spacecode](/maintainers/spacecode)

---

Top Contributors

[![Vladwww2015](https://avatars.githubusercontent.com/u/20088319?v=4)](https://github.com/Vladwww2015 "Vladwww2015 (6 commits)")

### Embed Badge

![Health badge](/badges/integration-helper-process-runner/health.svg)

```
[![Health](https://phpackages.com/badges/integration-helper-process-runner/health.svg)](https://phpackages.com/packages/integration-helper-process-runner)
```

###  Alternatives

[loki/magento2-components

Core module for defining Alpine.js components with advanced AJAX features

1011.8k26](/packages/loki-magento2-components)[mollie/magento2

Mollie Payment Module for Magento 2

1131.9M16](/packages/mollie-magento2)[run-as-root/magento2-prometheus-exporter

Magento2 Prometheus Exporter

68357.9k](/packages/run-as-root-magento2-prometheus-exporter)[baldwin/magento2-module-url-data-integrity-checker

Magento 2 module which can find potential url related problems in your catalog data

282822.9k](/packages/baldwin-magento2-module-url-data-integrity-checker)[magepal/magento2-form-field-manager

Customer and Address Form Fields Manager for Magento2

293.9k](/packages/magepal-magento2-form-field-manager)[zwernemann/module-withdrawal

Magento 2 EU Withdrawal Button Module - Adds a withdrawal/revocation button for orders in compliance with EU Directive (EU) 2023/2673

244.9k2](/packages/zwernemann-module-withdrawal)

PHPackages © 2026

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