semitexa / ultimate
Semitexa Ultimate - full-stack project skeleton for SSR applications with docs and core modules
Package info
github.com/semitexa/semitexa-ultimate
Language:Shell
Type:project
pkg:composer/semitexa/ultimate
Requires
- php: ^8.4
- semitexa/api: 2026.04.21.0704
- semitexa/auth: 2026.04.21.0704
- semitexa/authorization: 2026.04.21.1359
- semitexa/cache: 2026.04.15.0921
- semitexa/core: 2026.04.23.0637
- semitexa/dev: 2026.04.22.1008
- semitexa/docs: 2026.04.22.1008
- semitexa/ledger: 2026.04.15.1848
- semitexa/llm: 2026.04.09.1145
- semitexa/locale: 2026.04.21.0704
- semitexa/mail: 2026.04.14.1121
- semitexa/media: 2026.04.14.1121
- semitexa/orm: 2026.04.21.2047
- semitexa/project-graph: 2026.04.21.1359
- semitexa/rbac: 2026.04.12.1209
- semitexa/scheduler: 2026.04.14.1121
- semitexa/search: 2026.04.12.1209
- semitexa/ssr: 2026.04.21.1926
- semitexa/storage: 2026.04.05.0855
- semitexa/tenancy: 2026.04.21.0704
- semitexa/update: 2026.04.23.0856
- semitexa/webhooks: 2026.04.15.0921
- semitexa/workflow: 2026.04.14.1121
Requires (Dev)
- semitexa/testing: 2026.04.07.1133
- dev-master
- 2026.04.23.0856
- 2026.04.23.0705
- 2026.04.23.0637
- 2026.04.22.1153
- 2026.04.22.1008
- 2026.04.21.2047
- 2026.04.21.1926
- 2026.04.21.1359
- 2026.04.21.0704
- 2026.04.17.1043
- 2026.04.17.0433
- 2026.04.15.1848
- 2026.04.15.1128
- 2026.04.15.0921
- 2026.04.14.1121
- 2026.04.13.0911
- 2026.04.12.1209
- 2026.04.09.1145
- 2026.04.09.0444
- 2026.04.09.0412
- 2026.04.08.2108
- 2026.04.08.2025
- 2026.04.07.2058
- 2026.04.07.1933
- 2026.04.07.1133
- 2026.04.06.1418
- 2026.04.05.1915
- 2026.04.05.0855
- 2026.04.03.1349
- 2026.04.03.1240
- 2026.04.03.1207
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- v2.0.8
- 2.0.6
- 2.0.4
- v2.0.2
- v2.0.0
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- dev-develop
- dev-review/package-metadata-20260323
This package is auto-updated.
Last update: 2026-04-25 19:28:50 UTC
README
Source:
semitexa/ultimatescaffold. This file is bundled with the Semitexa Ultimate package and is copied into new projects bybin/semitexa init. In thesemitexa.devmonorepo edit the root copy and runbin/semitexa scaffold:sync-docsto propagate; in a consumer project,bin/semitexa init --only-docsrefreshes the file and local edits will be overwritten.
"Make it work, make it right, make it fast." — Kent Beck
Semitexa isn't just a framework; it's a philosophy of efficiency. Engineered for the high-performance Swoole ecosystem and built with an AI-first mindset, it allows you to stop fighting the infrastructure and start building the future.
Simple by design. Powerful by nature.
Requirements
- Docker and Docker Compose
- Composer (on host for install)
Install
From an empty folder (get the framework and install dependencies):
composer require semitexa/ultimate
From a clone or existing project (dependencies already in composer.json):
composer install
Then:
cp .env.default .env
Run (Docker — supported way)
bin/semitexa server:start
To stop:
bin/semitexa server:stop
Default URL: http://0.0.0.0:9502 (configurable via .env SWOOLE_PORT).
Documentation
Official framework documentation lives in packages/semitexa-docs/. Package-level deep reference lives in vendor/ (or packages/ in the monorepo).
| Topic | File or folder |
|---|---|
| AI context for this project | AI_CONTEXT.md |
| Framework docs hub | packages/semitexa-docs/docs/README.md |
| Workspace / monorepo docs — architecture, DI, PHPStan, testing, policy | packages/semitexa-docs/docs/workspace/README.md |
| Running the app — Docker, ports, logs | vendor/semitexa/core/docs/RUNNING.md |
| Adding pages and routes — modules, Request/Handler | vendor/semitexa/core/docs/ADDING_ROUTES.md |
| Attributes — AsPayload, AsPayloadHandler, AsResource, etc. | vendor/semitexa/core/docs/attributes/README.md |
| Service contracts — contracts:list, active implementation | vendor/semitexa/core/docs/SERVICE_CONTRACTS.md |
The repository does not treat a root-level ./docs/ directory as canonical. Project-level AI guidance lives at root (AGENTS.md, AI_ENTRY.md, AI_CONTEXT.md, AI_NOTES.md); framework guidance lives in packages/semitexa-docs/; per-package reference lives in packages/<package>/docs/.
Structure
src/modules/– your application modules (add new pages and endpoints here). New routes only in modules.packages/semitexa-docs/– official Semitexa framework and workspace documentation.packages/<package>/docs/– per-package canonical reference.var/docs/– working directory for notes, drafts, research, and remediation reports; not canonical.AI_ENTRY.md,AI_CONTEXT.md,AGENTS.md– AI entrypoints and rules at project root;AI_NOTES.mdis your notes (never overwritten).
Tests
Semitexa is Docker-based. Tests must run inside the project's test container. The only supported command is:
bin/semitexa test:run
This wraps PHPUnit with the correct container, environment, and test-path discovery. Pass PHPUnit arguments positionally:
bin/semitexa test:run --filter MyTest bin/semitexa test:run tests/Unit/Foo/BarTest.php
Running vendor/bin/phpunit directly on the host is not supported — the environment, service dependencies, and path resolution only match when tests run through bin/semitexa test:run.
Configuration lives in phpunit.xml.dist; add tests in tests/ or in packages/*/tests/ for monorepo packages (both are auto-discovered).