kinetis/skeleton

The smallest possible runnable Kinetis application: nginx + PHP-FPM, one controller, one route, a welcome page.

Maintainers

Package info

github.com/kinetis-dev/skeleton

Type:project

pkg:composer/kinetis/skeleton

Transparency log

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.3 2026-08-16 09:51 UTC

This package is auto-updated.

Last update: 2026-08-16 09:53:16 UTC


README

Kinetis

kinetis/skeleton
The smallest possible runnable Kinetis application

Packagist Version Packagist Downloads PHP Version License CI

One controller, one route, a welcome page — nginx + PHP-FPM, so a code change takes effect on your very next request with no container restart. Meant to be copied and grown from, not run as-is.

Running it

git clone https://github.com/kinetis-dev/kinetis.git
cd kinetis/packages/skeleton
cp .env.example .env
docker compose up --build

This package lives inside the kinetis monorepo, not a separate kinetis-skeleton repository — packages/skeleton/ is exactly the directory these commands land you in.

Then open http://localhost:8080. No PHP or Composer needed on the host — everything, including dependency installation, runs inside the containers.

Using this as a starting point

Copy packages/skeleton/ out into a new project, point its composer.json at a real kinetis/framework install instead of the path repository this monorepo uses internally, and build from there. The whole app is src/Http/WelcomeController.php (one route) and public/index.php (the standard Kinetis entry point) — read both end to end, then add your own controllers anywhere under App\; Kinetis discovers them automatically.

Looking for a larger, more realistic example — a database, a queue, scheduled commands, real-time updates? See kinetis/pingpong.

License

MIT — see LICENSE.