Skip to content

Deployments

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

FieldValue
Composer packagecapell-app/deployments
Package slugdeployments
Product groupCapell Operations
Tierpremium
Bundleoperations
Runtime contextsadmin
Capell version^4.0
Source repositorycapell-app/packages
Source pathpackages/deployments
Docs sourcepackages/deployments/docs
Manifestcapell.json

Deployments is an Available, Schema-owning Capell package in the Capell Operations product group. It ships as capell-app/deployments and extends these surfaces: admin.

Deployments lets site operators connect GitHub, GitLab, or Bitbucket repositories from the Capell admin and publish Composer requirement changes without server shell access. OAuth-backed connections store encrypted tokens, remember the repository owner/name, and let extension install flows open pull requests, auto-merge them, or make direct commits according to policy. It is the Operations bundle bridge between Marketplace installs and reviewed repository changes.

After install, admins get package-owned management or reporting surfaces inside Capell.

Status details:

  • Status: Available
  • Tier: premium
  • Bundle: operations
  • Composer package: capell-app/deployments
  • Namespace: Capell\Deployments
  • Theme key: not applicable

For developers: The package gives developers package-owned service providers, Actions, Data objects, models, Laravel routes, Filament classes, and Blade views instead of pushing this behaviour into core or application code.

For teams: Connect a Git repository once, then install or update Capell extensions from admin workflows that publish composer.json changes as reviewed pull requests.

Screenshot contract: docs/screenshots.json.

  • Deployment connection page before a repository is connected (admin, required).
  • Service providers: Capell\Deployments\Providers\DeploymentsServiceProvider.
  • Config files: packages/deployments/config/capell-deployments.php.
  • Migrations: packages/deployments/database/migrations/2026_05_10_190845_01_create_deployment_connections_table.php, packages/deployments/database/migrations/2026_06_07_090000_02_create_deployment_publications_table.php.
  • Models: DeploymentConnection, DeploymentPublication.
  • Filament classes: DeploymentConnectionPage, DeploymentConnectionFilamentWidget.
  • Route files: packages/deployments/routes/oauth.php.
  • Events: DeploymentPublishFailed, DeploymentPublishSucceeded.
  • Actions: CancelDeploymentPublicationAction, ConnectDeploymentAction, ConsumeOAuthStateAction, CreateOAuthStateAction, ValidateOAuthStateAction, PrepareComposerRequirementCommitAction, PublishComposerRequirementAction, RecordDeploymentPublicationAction, RefreshDeploymentPublicationStatusAction, RefreshProviderTokenAction.
  • Data objects: ComposerRequirementData, OAuthConnectionData, PublishComposerChangeResultData, PullRequestData, RepoFile.
  • Manifest contributions: admin-page: Capell\Deployments\Manifest\DeploymentsAdminPageContribution, dashboard-widget: Capell\Deployments\Manifest\DeploymentsDashboardFilamentWidgetContribution, route: Capell\Deployments\Manifest\DeploymentsRoutesContribution.
  • Health checks: Capell\Deployments\Health\DeploymentsHealthCheck.
  • Blade views: packages/deployments/resources/views/filament/pages/deployment-connection.blade.php, packages/deployments/resources/views/filament/widgets/deployment-connection.blade.php.
  • Required tables: deployment_connections, deployment_publications.
  • Models: DeploymentConnection, DeploymentPublication.
  • Migration files: 2026_05_10_190845_01_create_deployment_connections_table.php, 2026_06_07_090000_02_create_deployment_publications_table.php.
  • Migration impact: run host migrations through the package install flow before opening package surfaces.
  • Deletion/retention behaviour: Docs gap unless the package has an explicit pruning command, retention setting, or tested cascade path.
  • Admin navigation: adds package-owned Filament classes when registered.
  • Permissions: View:DeploymentConnectionPage, Manage:DeploymentConnectionPage.
  • Public routes: route files exist and must be reviewed before public enablement.
  • Database changes: package migrations are declared.
  • Settings: no package settings declared.
  • Queues or schedules: none detected in standard package paths.
  • Cache tags: none declared.
  • Commands: none declared.
  • Run migrations before opening package resources or public routes.
  • Review route middleware, throttling, signed URLs, and public-output safety before exposing routes.
  • Keep composer.json, composer.local.json, capell.json, docs, screenshots, and tests aligned when the package surface changes.
SymptomLikely causeCheckFix
Package surface is missing after installProvider or manifest is not loadedConfirm capell.json, package composer.json, and provider registrationReinstall the package, refresh Composer autoload, and clear host caches
Admin screen or command fails on missing tablePackage migrations have not runCheck the tables listed in Data ModelRun host migrations and rerun the focused package test
Route returns unexpected outputRoute cache, middleware, or signed URL setup does not match the package route fileCheck the route files listed in Technical ShapeClear route cache and verify middleware before exposing public routes
  1. Install the package: composer require capell-app/deployments.
  2. Run the required setup: php artisan migrate.
  3. Open the related Capell admin surface and verify Deployments appears.