Skip to content

Capell Core

This page is generated from public package documentation in capell-4 core packages and the package manifest checked into the source repository.

FieldValue
Composer packagecapell-app/core
Package slugcore
Product groupCapell Foundation
Tierfree
Bundlefoundation
Runtime contextsadmin, frontend, console
Capell version^4.0
Source repositorycapell-app/capell
Source pathpackages/core
Docs sourcepackages/core/docs
Manifestcapell.json

Latest Version on Packagist Documentation

capell-app/core is the platform package for Capell CMS. It owns the shared content model, package registry, install and upgrade orchestration, settings infrastructure, and extension contracts used by Admin, Frontend, Installer, Marketplace, and first-party add-ons.

Use this package when a Laravel app needs Capell’s domain records and extension API. It is not an editor UI or public renderer by itself.

Core owns:

  • sites, domains, languages, pages, page URLs, layouts, themes, blueprints, media records, redirects, package state, and upgrade log records
  • install, upgrade, rollback, package cache, component cache, doctor, faker, and maker commands
  • package manifest validation, package registry state, settings schemas, subscribers, render blocks, maker registration, and model-level contracts
  • database migrations and settings migrations for the shared Capell schema

Core does not own:

  • the Filament admin panel, resources, dashboard surfaces, and editor workflow; that is capell-app/admin
  • public request handling and public HTML rendering; that is capell-app/frontend
  • browser installer routes and setup removal; that is capell-app/installer
  • catalogue browsing, account linking, domain verification, and install authorization; that is capell-app/marketplace
  • visual layout building, frontend authoring, generated HTML cache, SEO, blog, navigation, or backup features; those live in add-on packages
Terminal window
composer require capell-app/core
php artisan capell:install

capell:install coordinates the foundation install flow. On an existing Capell app, use:

Terminal window
php artisan capell:upgrade
php artisan capell:doctor

Use php artisan list capell in the host app to confirm the exact command set available after Composer discovery.

  • Provider: Capell\Core\Providers\CapellServiceProvider
  • Config: packages/core/config/capell.php, packages/core/config/audit.php, packages/core/config/redirects.php
  • Main models: Page, PageUrl, Site, SiteDomain, Language, Layout, Theme, Blueprint, Type, Media, CapellExtension, UpgradeLogEntry
  • Main commands: capell:install, capell:upgrade, capell:rollback, capell:doctor, capell:package-cache, capell:package-cache:clear, capell:publish-migrations, capell:publish-components, capell:make-*
  • Test case support: Capell\Core\Testing\ExtensionTestHarness

Type remains present for compatibility while the admin surface is moving toward Blueprint naming. New docs and UI copy should prefer Blueprint unless they are documenting a compatibility API that still uses type terminology.

Use Core extension points instead of patching first-party models or providers:

NeedExtension point
Register a page subject typeCapellCore::registerPageType(new PageTypeData(...))
Register package settingsSettingsSchemaRegistry::register()
Register renderable definitionsRenderableRegistry::register()
Subscribe to lifecycle eventsSubscriberManager::subscribe()
Register cache dependenciesCacheInvalidationRegistry::registerDependency()
Register Tailwind source/import metadataTailwindAssetsRegistry::registerSource() / registerImport()
Create package files from project patternscapell:make-* maker commands

When adding a Core migration, also append it to packages/core/src/Concerns/HasMigrations.php; otherwise package installs can miss the migration.

Core is schema-owning. It creates the tables used by most Capell packages, including page, site, language, layout, theme, blueprint, media, extension, redirect, audit, and upgrade state.

Settings migrations are part of package installation and must be idempotent. Wrap new settings migrations in existence checks so upgrades and fresh installs behave the same way.

Core records are used by public rendering and admin workflows, so avoid adding admin-only assumptions to models, casts, or public serialization paths.

Run the smallest relevant check first:

Terminal window
vendor/bin/pest packages/core/tests --configuration=phpunit.xml

For shared contract changes, also run the package boundary and manifest tests:

Terminal window
vendor/bin/pest packages/core/tests/Arch packages/core/tests/Unit/Manifest --configuration=phpunit.xml

Before landing broader Core changes, run the repo preflight command:

Terminal window
composer preflight
  • Missing package surfaces usually mean Composer discovery or the Capell package cache is stale. Run composer dump-autoload, then php artisan capell:package-cache:clear.
  • New migrations that work in tests but not on install are usually missing from HasMigrations::getMigrations().
  • Missing default page records or Blueprint warnings should be checked with php artisan capell:doctor before changing seed or setup code.
  • Do not document moved features as Core behavior. Publishing Studio, generated HTML cache, site discovery, frontend authoring, SEO, blog, navigation, and backup workflows are package-owned.
PageCovers
Core overviewCore responsibilities and the package docs index.
Page managementPages, URLs, types, and publishing state.
Content managementShared content records and ownership boundaries.
Extending CapellCore contracts and extension surfaces.
CacheShared cache helpers and invalidation behavior.
Multi-site and multi-lingualSites, domains, languages, and localized URLs.
Subscriber managerLifecycle subscription registration.
Static-site extensionsStatic export integration points.
Authoring upgrade stepsUpgrading packages that integrate authoring behavior.
Install debuggingCommon install and setup failures.
Package authoring docsPackage shape, service providers, Actions/Data/settings, migrations, and tests.
Approved packages catalogHost packages and first-party add-on catalogue.