PHPackages                             middlewares/skeleton - 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. middlewares/skeleton

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

middlewares/skeleton
====================

A skeleton repository for PSR-15 middleware packages

v0.9.1(5y ago)6682MITPHPPHP ^7.2 || ^8.0

Since Dec 3Pushed 1y ago1 watchersCompare

[ Source](https://github.com/middlewares/skeleton)[ Packagist](https://packagist.org/packages/middlewares/skeleton)[ Docs](https://github.com/middlewares/skeleton)[ RSS](/packages/middlewares-skeleton/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (7)Versions (18)Used By (0)

This is a skeleton to create packages implementing [PSR-15](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-15-request-handlers.md) using composer:

```
composer create-project middlewares/skeleton my-middleware
```

---

middlewares/skeleton
====================

[](#middlewaresskeleton)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f8e797cedce9db62260fdfbc616248bdea7c1307a9680405ee6f27c21811b14c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6964646c6577617265732f736b656c65746f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/middlewares/skeleton)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Testing](https://github.com/middlewares/skeleton/workflows/testing/badge.svg)](https://github.com/middlewares/skeleton/workflows/testing/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/25627a170b5937b4ce034d7414c9354c360ad705a7bbd1e47abfa12df3e69669/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6964646c6577617265732f736b656c65746f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/middlewares/skeleton)

Description of the middleware

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

[](#requirements)

- PHP &gt;= 7.2
- A [PSR-7 http library](https://github.com/middlewares/awesome-psr15-middlewares#psr-7-implementations)
- A [PSR-15 middleware dispatcher](https://github.com/middlewares/awesome-psr15-middlewares#dispatcher)

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

[](#installation)

This package is installable and autoloadable via Composer as [middlewares/skeleton](https://packagist.org/packages/middlewares/skeleton).

```
composer require middlewares/skeleton
```

Example
-------

[](#example)

```
$dispatcher = new Dispatcher([
    (new Middlewares\Skeleton())
        ->option1()
        ->option2($value)
]);

$response = $dispatcher->dispatch(new ServerRequest());
```

Usage
-----

[](#usage)

### option1

[](#option1)

Option description

### option2

[](#option2)

Option description

---

Please see [CHANGELOG](CHANGELOG.md) for more information about recent changes and [CONTRIBUTING](CONTRIBUTING.md) for contributing details.

The MIT License (MIT). Please see [LICENSE](LICENSE) for more information.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 89.9% 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 ~112 days

Recently: every ~258 days

Total

15

Last Release

1869d ago

PHP version history (4 changes)v0.1.0PHP ^5.6 || ^7.0

v0.4.0PHP ^7.0

v0.8.0PHP ^7.2

v0.9.0PHP ^7.2 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/e99df56b617f4af8cf0556a51a0ca20c7420104920c57d7e9eab093f92bb744f?d=identicon)[oscarotero](/maintainers/oscarotero)

![](https://www.gravatar.com/avatar/42e0d72f42eb7d84f67e20d28606da42e5a3248ca908b1eadb4366aafeae2561?d=identicon)[filisko](/maintainers/filisko)

---

Top Contributors

[![oscarotero](https://avatars.githubusercontent.com/u/377873?v=4)](https://github.com/oscarotero "oscarotero (89 commits)")[![mav2287](https://avatars.githubusercontent.com/u/13509635?v=4)](https://github.com/mav2287 "mav2287 (5 commits)")[![kfreiman](https://avatars.githubusercontent.com/u/2056294?v=4)](https://github.com/kfreiman "kfreiman (4 commits)")[![schnittstabil](https://avatars.githubusercontent.com/u/6059032?v=4)](https://github.com/schnittstabil "schnittstabil (1 commits)")

---

Tags

httppsr-7middlewareservertemplatepsr-15

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/middlewares-skeleton/health.svg)

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

###  Alternatives

[middlewares/request-handler

Middleware to execute request handlers

451.6M26](/packages/middlewares-request-handler)[middlewares/fast-route

Middleware to use FastRoute

96191.1k15](/packages/middlewares-fast-route)[middlewares/negotiation

Middleware to implement content negotiation

47442.1k11](/packages/middlewares-negotiation)[middlewares/payload

Middleware to parse the body of the request with support for json, csv and url-encode

32466.8k17](/packages/middlewares-payload)[middlewares/http-authentication

Middleware to implement Basic and Digest Http authentication

35302.0k2](/packages/middlewares-http-authentication)[middlewares/client-ip

Middleware to detect the client ip and save it as a request attribute

16629.7k9](/packages/middlewares-client-ip)

PHPackages © 2026

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