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

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

sushilk/slim-skeleton
=====================

A Slim Framework skeleton application for rapid development

V0.0.1(1mo ago)10MITPHPPHP ^8.3CI passing

Since May 28Pushed 1mo agoCompare

[ Source](https://github.com/codebysushil/slim-skeleton)[ Packagist](https://packagist.org/packages/sushilk/slim-skeleton)[ GitHub Sponsors](https://github.com/CodeWithSushil)[ RSS](/packages/sushilk-slim-skeleton/feed)WikiDiscussions main Synced 3w ago

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

Slim framework Skeleton Application
-----------------------------------

[](#slim-framework-skeleton-application)

[![Packagist Dependency Version](https://camo.githubusercontent.com/97e0132850198004820745041ceefe15434c82665b266058a54fefcac8d2de13/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f73757368696c6b2f736c696d2d736b656c65746f6e2f7068703f7374796c653d666f722d7468652d6261646765)](https://camo.githubusercontent.com/97e0132850198004820745041ceefe15434c82665b266058a54fefcac8d2de13/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f73757368696c6b2f736c696d2d736b656c65746f6e2f7068703f7374796c653d666f722d7468652d6261646765)[![GitHub Release](https://camo.githubusercontent.com/de7029fbf8c67bc48134120728bb6fb0f0fdc9ce64132ff631bf10611f7c599a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f636f6465627973757368696c2f736c696d2d736b656c65746f6e3f7374796c653d666f722d7468652d6261646765)](https://camo.githubusercontent.com/de7029fbf8c67bc48134120728bb6fb0f0fdc9ce64132ff631bf10611f7c599a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f636f6465627973757368696c2f736c696d2d736b656c65746f6e3f7374796c653d666f722d7468652d6261646765)[![Packagist Downloads](https://camo.githubusercontent.com/2cd66a1a73a1607347de1e8af73480cbcb7bab9570d49f4b4dab2a25d88db35d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73757368696c6b2f736c696d2d736b656c65746f6e3f7374796c653d666f722d7468652d6261646765266c6f676f3d636f6d706f736572)](https://camo.githubusercontent.com/2cd66a1a73a1607347de1e8af73480cbcb7bab9570d49f4b4dab2a25d88db35d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73757368696c6b2f736c696d2d736b656c65746f6e3f7374796c653d666f722d7468652d6261646765266c6f676f3d636f6d706f736572)[![GitHub License](https://camo.githubusercontent.com/eddf15d3e35a24842a77315fe7623b3e259a5417e60da73a323f5816c739f155/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f636f6465627973757368696c2f736c696d2d736b656c65746f6e3f7374796c653d666f722d7468652d6261646765)](https://camo.githubusercontent.com/eddf15d3e35a24842a77315fe7623b3e259a5417e60da73a323f5816c739f155/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f636f6465627973757368696c2f736c696d2d736b656c65746f6e3f7374796c653d666f722d7468652d6261646765)[![Coverage](https://camo.githubusercontent.com/356be797a46e3267be37b5a95ea340a07b54e076ea345f88418b88926bc6cbda/68747470733a2f2f636f6465636f762e696f2f67682f636f6465627973757368696c2f736c696d2d736b656c65746f6e2f6272616e63682f6d61696e2f67726170682f62616467652e737667)](https://camo.githubusercontent.com/356be797a46e3267be37b5a95ea340a07b54e076ea345f88418b88926bc6cbda/68747470733a2f2f636f6465636f762e696f2f67682f636f6465627973757368696c2f736c696d2d736b656c65746f6e2f6272616e63682f6d61696e2f67726170682f62616467652e737667)

Use this skeleton application to quickly setup and start working on a new Slim Framework 4 application. This application uses the latest **Slim 4** &amp; **slim Twig** templates engine with **Slim PSR-7** implementation and **PHP-DI container** implementation. It also uses the **Monolog logger**.

This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy.

---

### Install the Application

[](#install-the-application)

Run this command from the directory in which you want to install your new Slim Framework application. You will require PHP 8.3 or newer.

```
composer create-project sushilk/slim-skeleton [my-app-name]
```

Replace `[my-app-name]` with the desired directory name for your new application. You'll want to:

- Point your virtual host document root to your new application's `public/` directory.
- Ensure `logs/` is web writable.

To run the application in development, you can run these commands

```
cd [my-app-name]
composer start
```

Or you can use `docker-compose` to run the app with `docker`, so you can run these commands:

```
cd [my-app-name]
docker-compose up -d
```

After that, open `http://localhost:5000` in your browser.

Run this command in the application directory to run the test suite

```
composer test
```

That's it! Now go build something cool.

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance89

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

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

57d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/14ee8bc204856d2c784a628778d5ae25e5ef14052cce198ca3a7943574832260?d=identicon)[CodeWithSushil](/maintainers/CodeWithSushil)

---

Top Contributors

[![CodeWithSushil](https://avatars.githubusercontent.com/u/94827178?v=4)](https://github.com/CodeWithSushil "CodeWithSushil (31 commits)")

---

Tags

restrouterpsr7slimmicroframework

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[phlak/directory-lister

PHP directory lister

2.5k1.4k](/packages/phlak-directory-lister)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[duxweb/dux-lite

The lightweight framework based on slim php

161.0k9](/packages/duxweb-dux-lite)

PHPackages © 2026

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