PHPackages                             palabs/endpoint-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. [Framework](/categories/framework)
4. /
5. palabs/endpoint-bundle

ActiveSymfony-bundle[Framework](/categories/framework)

palabs/endpoint-bundle
======================

Symfony Endpoint bundle

2.0.0(4y ago)43.0k[1 PRs](https://github.com/PaLabs/EndpointBundle/pulls)MITPHPPHP ^8.0

Since Sep 22Pushed 3y ago1 watchersCompare

[ Source](https://github.com/PaLabs/EndpointBundle)[ Packagist](https://packagist.org/packages/palabs/endpoint-bundle)[ RSS](/packages/palabs-endpoint-bundle/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (6)Versions (11)Used By (0)

PaEndpointBundle
================

[](#paendpointbundle)

PaEndpointBundle add alternative to symfony controllers. Endpoint is a controller with only one method - **execute(Request): Response**

Features include:

- Simple and clean endpoint interface - only one request handler in one class
- Easy way to generate routes, e.g. $router-&gt;url(SomeEndpoint::class)
- Refactorable - no additional changes need if you move or rename endpoint
- No route names need (but if you want you can specify it in route definition)
- Supports for extending endpoints - you can define base endpoints and many childs with shared routes configuration. It's is very common task in crud controllers.

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

[](#installation)

Add bundle to you composer.json:

```
composer require palabs/endpoint-bundle
```

Register bundle in Kernel:

```
// app/AppKernel.php

public function registerBundles()
{
    return [
        // ...
        new PaLabs\EndpointBundle\PaEndpointBundle(),
        // ...
    ];
}
```

Add route loading in app/config/routing.yml:

```
endpoints:
  resource: .
  type: endpoints
```

Usage
-----

[](#usage)

A simple endpoint look like

```
use PaLabs\EndpointBundle\EndpointInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

class TextEndpoint implements EndpointInterface {

    public function routes()
    {
       return new Route('/cool_message');
    }

    public function execute(Request $request): Response
    {
       return new Response('Hello, world');
    }
}
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity74

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

Recently: every ~312 days

Total

9

Last Release

1602d ago

Major Versions

0.4.0 → 1.0.02020-02-14

1.0.1 → 2.0.02021-12-24

PHP version history (3 changes)0.1.0PHP ^7.0

1.0.1PHP ^7.0 || ^8.0

2.0.0PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/70ffcbf404633790b0c0161c36d1210e338918e230731ab661572309d5214fff?d=identicon)[lewbor](/maintainers/lewbor)

---

Top Contributors

[![lewbor](https://avatars.githubusercontent.com/u/1887927?v=4)](https://github.com/lewbor "lewbor (12 commits)")

---

Tags

endpoint

### Embed Badge

![Health badge](/badges/palabs-endpoint-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/palabs-endpoint-bundle/health.svg)](https://phpackages.com/packages/palabs-endpoint-bundle)
```

###  Alternatives

[symfony/framework-bundle

Provides a tight integration between Symfony components and the Symfony full-stack framework

3.6k235.4M9.7k](/packages/symfony-framework-bundle)[shopware/platform

The Shopware e-commerce core

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

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

1.3k1.3M152](/packages/sulu-sulu)[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)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19462.3M1.3k](/packages/drupal-core)

PHPackages © 2026

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