Hydra PHP framework application skeleton

Maintainers

Package info

github.com/hydra-foundation/app

Type:project

pkg:composer/hydrakit/app

Transparency log

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v0.2.0 2026-07-09 20:03 UTC

This package is auto-updated.

Last update: 2026-07-10 16:35:13 UTC


README

The skeleton every Hydra project starts from.

Requirements

  • PHP 8.2+ and Composer
  • Docker + Compose (for the full stack: PHP-FPM, nginx, MariaDB, Redis)

Setup

cp .env.example .env             # defaults run as-is for local dev
composer install                 # resolves the framework packages
php bin/console key:generate     # writes a fresh APP_KEY into .env

Run

With Docker (full stack):

./bin/dev up -d --build          # PHP-FPM + nginx + MariaDB + Redis

Open http://localhost:8080 (the port is APP_PORT in .env).

Without Docker (public site only):

composer start                   # php -S localhost:8000 -t public/

Open http://localhost:8000.

Everything else — commands, architecture, configuration, migrations, tests — lives in the wiki.