PHPackages                             gollumsf/manager - 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. gollumsf/manager

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

gollumsf/manager
================

Simple manager abstract class service for entity

v0.1.0(7y ago)04GPL-3.0-or-laterPHPPHP &gt;=7.0

Since Jan 31Pushed 7y ago1 watchersCompare

[ Source](https://github.com/GollumSF/manager)[ Packagist](https://packagist.org/packages/gollumsf/manager)[ Docs](https://github.com/GollumSF/manager)[ RSS](/packages/gollumsf-manager/feed)WikiDiscussions master Synced 2w ago

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

Manager
=======

[](#manager)

Simple manager abstract class service for entity

Installation:
-------------

[](#installation)

```
composer require gollumsf/manager
```

Usage:
------

[](#usage)

Register service by autowire.

```
namespace App\Manager;

use GolumSF\Manager\Manager;

class UserManager extends Manager {
}
```

```
namespace App\Controler;

use App\Manager\UserManager;

class MyControler {

	myAction(UserManager $userManager) {
		return Response($userManager->getEntityClass());
	}

}
```

Display:

```
App\Entity\User

```

Methods:
--------

[](#methods)

```
 * public getEntityClass(): string                // Return class name fo entity
 * protected getEntityManager(): string           // Return entity manager
 * public getRepository(): ?ObjectRepository      // Return repository of entity
 * public delete($entity): Entity                 // Delete the doctrine entity
 * public update($entity): Entity                 // Persist and flush the entity
 * public find($id): Entity|null                  // Return the entity of id (wrapper of repository->find)
 * public findOneBy(array $criteria): Entity|null // Return the entity of criteria (wrapper of repository->findOneBy)
 * public findBy(                                 // Return the entities of criteria (wrapper of repository->findBy)
        array $criteria,
        array $orderBy = null,
        $limit = null,
        $offset = null
	): Entity[]
```

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

Unknown

Total

1

Last Release

2706d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6690bb36165854e1db86762d56c22351ff844b12f59e5c91993a6d793f098cfb?d=identicon)[Smeagolworms4](/maintainers/Smeagolworms4)

---

Top Contributors

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

---

Tags

symfonymanagerentity

### Embed Badge

![Health badge](/badges/gollumsf-manager/health.svg)

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

###  Alternatives

[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1175.2k](/packages/rcsofttech-audit-trail-bundle)[jbtronics/settings-bundle

A symfony bundle to easily create typesafe, user-configurable settings for symfony applications

9558.8k3](/packages/jbtronics-settings-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)

PHPackages © 2026

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