glueful / thallo
Thallo — a hybrid CMS and canonical content source, built on the Glueful framework.
Package info
Type:project
pkg:composer/glueful/thallo
Requires
- php: ^8.3
- glueful/aegis: ^1.14.0
- glueful/audit: ^1.3.0
- glueful/commerce: ^1.12.0
- glueful/email-notification: ^1.12.0
- glueful/framework: ^1.78.1
- glueful/i18n: ^1.1.1
- glueful/import-export: ^1.1.1
- glueful/media: ^1.1.0
- glueful/meilisearch: ^1.6
- glueful/payvia: ^2.7
- glueful/subscriptions: ^2.2
- glueful/tenancy: ^2.0.0
- glueful/thallo-account: *
- glueful/thallo-analytics: *
- glueful/thallo-collections: *
- glueful/thallo-commerce: *
- glueful/thallo-contracts: *
- glueful/thallo-importers: *
- glueful/thallo-navigation: *
- glueful/thallo-render: *
- glueful/thallo-search: *
- glueful/thallo-seo: *
- glueful/thallo-subscriptions: *
- glueful/thallo-tenancy: *
- glueful/thallo-workflow: *
- glueful/users: ^2.3.2
- league/commonmark: ^2.8
- symfony/brevo-mailer: ^8.1
Requires (Dev)
- phpunit/phpunit: ^10.5
- squizlabs/php_codesniffer: ^3.6
This package is auto-updated.
Last update: 2026-08-17 00:09:00 UTC
README
A self-hosted, composable CMS and commerce platform for developers building content-rich sites and storefronts. One installable system — content, rendering, navigation, collections, SEO, analytics, commerce with payment links and receipts, subscriptions, and multi-workspace tenancy — designed together, running on the Glueful PHP framework with a Vue 3 admin.
Developer Preview. The platform is production-engineered (the payment paths in particular are built fail-closed and race-tested), but the packaging, docs, and defaults are young. Read docs/limitations.md before taking real money.
Requirements
- PHP 8.3+ (CLI + your web SAPI)
- PostgreSQL (what Thallo's own site and test suite run). SQLite/MySQL are configurable but not currently tested lanes — see docs/limitations.md.
- A web server pointing at
public/(the PHP built-in server works for evaluation) - cron (per-capability entries; see docs/production.md)
- Optional: queue workers for background jobs, an SMTP/rich-mail transport for email features
Quickstart
composer create-project --prefer-dist glueful/thallo my-site cd my-site createdb thallo # or create a database with your PostgreSQL tool php glueful thallo:provision # prompts for the database; writes .env, keys, migrations, cache php glueful thallo:create-admin # prompts for site name + first admin; grants full access php -S localhost:8000 -t public vendor/glueful/framework/router.php
Both commands take flags for scripted installs (--help; pass -n for non-interactive).
Log in at http://localhost:8000/admin.
BASE_URL matters: every absolute URL Thallo emits (media, sitemaps, canonical/OG heads,
payment links) derives from it — never from the request's Host header. Plain HTTP is fine for
local development; payment links specifically require a canonical HTTPS origin (see
.env.example's notes).
What's on by default
A fresh install activates the core CMS (content, render, collections, navigation, SEO, analytics, media, i18n, users/RBAC, audit, import/export) plus the bundled subscriptions billing engine. Commerce, payments (Payvia), and Meilisearch ship installed but disabled — enable them from the in-admin extensions browser (Settings → Extensions) or:
php glueful extensions:enable Commerce php glueful extensions:enable Payvia php glueful migrate:run
Each feature you enable may add operational obligations (cron entries, config); they're listed per capability in docs/production.md.
Documentation
Support
Open an issue on the repository. Security reports: see SECURITY.md — please do not open public issues for vulnerabilities.
Versioning
Semantic versioning. Developer Preview releases are 1.0.0-beta.N and immutable — fixes ship
as the next beta.N+1. Upgrade notes live in CHANGELOG.md and
docs/upgrading.md.
License
MIT.