PHPackages                             final-gene/rest-api-entry-point-module - 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. [API Development](/categories/api)
4. /
5. final-gene/rest-api-entry-point-module

ActiveLibrary[API Development](/categories/api)

final-gene/rest-api-entry-point-module
======================================

Provides a REST resource which represents an entry point of the API.

1.1.1(10y ago)05051proprietaryPHPPHP &gt;=5.5.0

Since Feb 12Pushed 7y agoCompare

[ Source](https://github.com/final-gene/zf2-rest-api-entry-point-module)[ Packagist](https://packagist.org/packages/final-gene/rest-api-entry-point-module)[ Docs](https://gitlab.devel.final-gene.de/final-gene/rest-api-entry-point-module)[ RSS](/packages/final-gene-rest-api-entry-point-module/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (20)Versions (4)Used By (0)

RestApiEntryPointModule
=======================

[](#restapientrypointmodule)

Provides a REST resource which represents an entry point of the API.

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

[](#installation)

After composer is available in your path you are ready to install this module.

```
composer require final-gene/rest-api-entry-point-module

```

Then add `FinalGene\RestApiEntryPointModule` to your application config file.

Configuration
-------------

[](#configuration)

You may now configure a virtual entry point controller (e.g. `FinalGene\RestApiEntryPointModule\EntryPointController`) which will actually map the `FinalGene\RestApiEntryPointModule\Resource\EntryPointResource` as listener.

Here is an example for a possible REST configuration:

```
return [
    'zf-rest' => [
        'FinalGene\RestApiEntryPointModule\EntryPointController' => [
            'listener' => FinalGene\RestApiEntryPointModule\Resource\EntryPointResource::class,
            'route_name' => 'api/rest',
            'collection_name' => null,
            'collection_http_methods' => [
                'GET',
            ],
        ],
    ],
];

```

A resulting router configuration could be the following one:

```
return [
    'router' => [
        'routes' => [
            'api' => [
                'type' => 'literal',
                'options' => [
                    'route' => '/api',
                'child_routes' => [
                    'rest' => [
                        'type' => 'literal',
                        'options' => [
                            'route' => '/rest',
                            'defaults' => [
                                'controller' => 'FinalGene\RestApiEntryPointModule\EntryPointController',
                            ],
                        ],
                    ],
                ],
            ],
        ],
    ],
];

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

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

Total

3

Last Release

3697d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8856d4139fd7a0f97990a243ba922724ff0f93490d5cf3442e470ef0595f9e7e?d=identicon)[FrankGiesecke](/maintainers/FrankGiesecke)

---

Top Contributors

[![FrankGiesecke](https://avatars.githubusercontent.com/u/4430040?v=4)](https://github.com/FrankGiesecke "FrankGiesecke (14 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/final-gene-rest-api-entry-point-module/health.svg)

```
[![Health](https://phpackages.com/badges/final-gene-rest-api-entry-point-module/health.svg)](https://phpackages.com/packages/final-gene-rest-api-entry-point-module)
```

PHPackages © 2026

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