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

ActiveProject

splinter/skeleton
=================

Splinter application skeleton — deploy a new microservice with composer create-project

0.1.1(today)03↑2900%MITPHPPHP ^8.2

Since Aug 25Pushed todayCompare

[ Source](https://github.com/vhar/splinter-skeleton)[ Packagist](https://packagist.org/packages/splinter/skeleton)[ RSS](/packages/splinter-skeleton/feed)WikiDiscussions main Synced today

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

Splinter Skeleton
=================

[](#splinter-skeleton)

Application template for the [Splinter framework](https://github.com/vhar/splinter-framework).

Create a new project
--------------------

[](#create-a-new-project)

```
composer create-project splinter/skeleton my-service
cd my-service
cp .env.example .env   # already done automatically by composer
```

Edit `.env`, then run the migrations:

```
php splinter migrate
```

Start a local PHP server:

```
php -S localhost:8000 -t public/
```

Directory layout
----------------

[](#directory-layout)

```
bootstrap/app.php     Web bootstrap — boots HttpKernel
config/               Configuration files (auto-loaded by the kernel)
  app.php             Providers, routes, middlewares, extra commands
  database.php        Database connections
  events.php          Event → listener map
  phinx.php           Migration runner config (includes core migrations)
  queue.php           Redis connection for the queue driver
db/
  migrations/         Your application migrations
  seeds/              Seed files
public/index.php      Web server document root entry point
routes/
  api.php             API routes
  web.php             Web routes
splinter              CLI entry point (like artisan)
src/                  Your application code (App\ namespace)

```

CLI commands
------------

[](#cli-commands)

```
php splinter migrate [--connection=default]
php splinter migrate:rollback [--connection=default]
php splinter migrate:status [--connection=default]
php splinter migrate:create
php splinter queue:work [queue]
```

Adding routes
-------------

[](#adding-routes)

Route files receive `$app` (`Splinter\Application`) and `$router`(`Bramus\Router\Router`) as local variables.

```
// routes/api.php
$router->mount('/api/v1', function () use ($router, $app) {
    $router->get('/ping', function () {
        \Splinter\Http\JsonResponse::success(['pong' => true])->send();
    });
});
```

Adding console commands
-----------------------

[](#adding-console-commands)

Register your command classes in `config/app.php` under `'commands'`. They are resolved from the DI container, so constructor dependencies are autowired automatically.

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance100

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

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

Total

2

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5484416?v=4)[Vladimir Kharinenkov](/maintainers/vhar)[@vhar](https://github.com/vhar)

---

Top Contributors

[![vhar](https://avatars.githubusercontent.com/u/5484416?v=4)](https://github.com/vhar "vhar (2 commits)")

### Embed Badge

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

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

PHPackages © 2026

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