PHPackages                             gepur-it/sic-bundle - 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. [CLI &amp; Console](/categories/cli)
4. /
5. gepur-it/sic-bundle

ActiveSymfony-bundle[CLI &amp; Console](/categories/cli)

gepur-it/sic-bundle
===================

Single Instance Command Bundle

6.0.0(5y ago)17.9k1MITPHPPHP ^7.4|^8.0

Since Jun 3Pushed 5y ago1 watchersCompare

[ Source](https://github.com/gepur-it/sic-bundle)[ Packagist](https://packagist.org/packages/gepur-it/sic-bundle)[ RSS](/packages/gepur-it-sic-bundle/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (5)Versions (6)Used By (1)

sic-bundle
==========

[](#sic-bundle)

Single Instance Console Command Bundle

provides the ability to ban more than one command instance

add bundle in bundles.php

```
return [
   ...
   GepurIt\SingleInstanceCommandBundle\SingleInstanceCommandBundle::class => ['all' => true],
   ...
];

```

to mark command as single instance, add interface to your command, and add method getLockName()

```
class MyCommand extends Command implements SingleInstanceInterface {
    ...

    /**
     * get`s lock name for command execution, based on input
     * @param InputInterface $input
     * @return string
     */
    public function getLockName(InputInterface $input): string
    {
        return $this->getName();
    }

    ...
}

```

to allow to run the same command with different args, use $input in getLockName() method

```

class MyCommand extends Command implements SingleInstanceInterface {
    ...

    /**
     * get`s lock name for command execution, based on input
     * @param InputInterface $input
     * @return string
     */
    public function getLockName(InputInterface $input): string
    {
        return $this->getName().':'.$input->getArgument('myArg');
    }

    ...
}

```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 71.4% 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 ~171 days

Total

5

Last Release

1851d ago

Major Versions

1.0.0 → 4.3.02019-06-27

4.3.0 → 5.0.02019-12-04

5.0.1 → 6.0.02021-04-19

PHP version history (3 changes)1.0.0PHP ^7.2

4.3.0PHP ^7.3

6.0.0PHP ^7.4|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/b44ec6e263de3ca4efc54fd278a809b9bbf77eb85b0ebe5021c5408705e435be?d=identicon)[gepur-it](/maintainers/gepur-it)

---

Top Contributors

[![yawa20](https://avatars.githubusercontent.com/u/4233941?v=4)](https://github.com/yawa20 "yawa20 (5 commits)")[![maritechpro](https://avatars.githubusercontent.com/u/30262797?v=4)](https://github.com/maritechpro "maritechpro (2 commits)")

### Embed Badge

![Health badge](/badges/gepur-it-sic-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/gepur-it-sic-bundle/health.svg)](https://phpackages.com/packages/gepur-it-sic-bundle)
```

###  Alternatives

[behat/behat

Scenario-oriented BDD framework for PHP

4.0k96.8M2.0k](/packages/behat-behat)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[crunzphp/crunz

Schedule your tasks right from the code.

2292.0M6](/packages/crunzphp-crunz)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)

PHPackages © 2026

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