Skip to content

02. Installation & Setup

Huement edited this page Jul 11, 2026 · 1 revision

Get StatComm integrated into your project in just a few terminal commands.

1. Requirements

  • Statamic ^5.0 or ^6.0

  • Livewire ^3.0

  • PHP ^8.2

2. Install via Composer

Run the following command in the root directory of your main Statamic application:

composer require huement/statcomm

3. Publish Configuration & Assets

StatComm ships with customizable configuration files, blueprints, assets, and frontend views. Publish them to your main application tree using our explicit tags:

# Publish the core configuration and form schemas
php artisan vendor:publish --tag=statcomm-config

# Publish the Tailwind-ready blade layouts for customization
php artisan vendor:publish --tag=statcomm-views

# Publish pre-compiled CSS assets to your public directory
php artisan vendor:publish --tag=statcomm-assets

Clone this wiki locally