PHPackages                             signnow/rest-entity-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. [HTTP &amp; Networking](/categories/http)
4. /
5. signnow/rest-entity-manager

ActiveLibrary[HTTP &amp; Networking](/categories/http)

signnow/rest-entity-manager
===========================

Library gives you ability to communicate to REST API within DTO objects

v2.3.0(3y ago)1128.5k↓55.5%2[2 issues](https://github.com/signnow/RestEntityManager/issues)MITPHPPHP &gt;=7.1CI failing

Since Oct 23Pushed 1y ago1 watchersCompare

[ Source](https://github.com/signnow/RestEntityManager)[ Packagist](https://packagist.org/packages/signnow/rest-entity-manager)[ RSS](/packages/signnow-rest-entity-manager/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (4)Versions (17)Used By (0)

SignNow REST API entity manager
===============================

[](#signnow-rest-api-entity-manager)

This project helps to communicate with REST API using DTO objects

Requirements
------------

[](#requirements)

PHP 7.1 or newer

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

[](#installation)

The library can be installed using Composer.

```
composer require signnow/rest-entity-manager
```

### Usage

[](#usage)

```
use Doctrine\Common\Annotations\AnnotationRegistry;
use JMS\Serializer\Annotation as Serializer;
use SignNow\Rest\EntityManager\Annotation\HttpEntity;
use SignNow\Rest\Entity\Entity;
use SignNow\Rest\Factories\ClientFactory;
use SignNow\Rest\Factories\EntityManagerFactory;

/**
 * Class User
 *
 * @HttpEntity("users/{user}")
 */
class User extends Entity
{
    /**
     * @var int
     * @Serializer\Type("int")
     */
    private $id;

    /**
     * @var string
     * @Serializer\Type("string")
     */
    private $name;

    /**
     * @return int
     */
    public function getId(): ?int
    {
        return $this->id;
    }

    /**
     * @return string
     */
    public function getName(): string
    {
        return $this->name;
    }
}

$clientFactory = new ClientFactory(['base_uri' => 'https://api.github.com']);
$entityManager = (new EntityManagerFactory($clientFactory))->create();

/** @var User $user */
$user = $entityManager->get(User::class, ['user' => 'codeception']);

echo sprintf('Id: %s; Name: %s.', $user->getId(), $user->getName());
```

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance11

Infrequent updates — may be unmaintained

Popularity35

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 83.3% 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 ~83 days

Recently: every ~38 days

Total

14

Last Release

1362d ago

Major Versions

v1.0.1 → v2.0.02021-06-23

v1.3.0 → v2.1.02021-07-02

v1.4.1 → v2.1.12021-09-29

v1.5.0 → v2.2.02022-05-13

v1.6.0 → v2.3.02022-10-11

### Community

Maintainers

![](https://www.gravatar.com/avatar/514a6936435db257a1f5c01d30a2fe7a0ee2882eb6115cc21f18750fb073232e?d=identicon)[SignNow](/maintainers/SignNow)

---

Top Contributors

[![falgonua](https://avatars.githubusercontent.com/u/38418746?v=4)](https://github.com/falgonua "falgonua (20 commits)")[![dhalkin](https://avatars.githubusercontent.com/u/5365758?v=4)](https://github.com/dhalkin "dhalkin (2 commits)")[![mykhailo-k](https://avatars.githubusercontent.com/u/73165811?v=4)](https://github.com/mykhailo-k "mykhailo-k (2 commits)")

---

Tags

packagesignnowrestsignnowentity-manager

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/signnow-rest-entity-manager/health.svg)

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

###  Alternatives

[xeroapi/xero-php-oauth2

Xero official PHP SDK for oAuth2 generated with OpenAPI spec 3

1054.7M18](/packages/xeroapi-xero-php-oauth2)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9421.6k61](/packages/open-dxp-opendxp)[onesignal/onesignal-php-api

A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com

34216.9k2](/packages/onesignal-onesignal-php-api)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[dreamfactory/df-core

DreamFactory(tm) Core Components

1652.1k38](/packages/dreamfactory-df-core)

PHPackages © 2026

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