English | 한국어
A modern, extensible CMS platform built with Laravel + React
The next generation of Gnuboard — Korea's most widely used open-source CMS
The demo UI language follows your browser (Korean/English); you can switch it in the UI.
About · Key Features · Tech Stack · Architecture · Quick Start · Bundled Extensions · Business Models · Migrating from Gnuboard 5 · Documentation · Contributing · Team · Community · Changelog · License
Gnuboard7 is a complete, ground-up redesign of Gnuboard — Korea's most widely used open-source CMS for 23 years — rebuilt on a modern stack.
Everything from security to architecture was rewritten from scratch on Laravel and React.
- JSON layout engine: define React-based UI declaratively with JSON alone, no React knowledge required. Modules and plugins inject or extend UI dynamically through JSON without a frontend build. When you need something more advanced, you can develop and register custom React components
- One platform, many business models: community, storefront, subscription, booking — extend it to fit your business
- Fine-grained access control: Role + Permission + Scope, a three-tier model that keeps control as your service grows
- Global-ready: native i18n support, locale-driven UI, multi-currency handling
- Extension system: modules + plugins + templates, a three-layer structure that adds functionality without touching the core
Everything a modern web platform needs, built in.
| Area | Description |
|---|---|
| Modular architecture | Modules + plugins + templates, a three-layer extension structure. Independent modules (boards, commerce, and more) can be developed without modifying the core. Hook-based injection preserves the clear layering of the Service-Repository pattern |
| Language pack system | Install a new language from a ZIP file or GitHub URL without touching the core. Official bundled language packs (Japanese and others) are ready to use immediately, and labels an operator has edited are preserved per sub-key so a language pack never overwrites them. Packs apply independently to modules, plugins, and templates |
| Localization | A consistent multilingual development experience from backend to frontend. Active language packs automatically enrich notification channel labels, provider/registry payloads, and settings catalogs (payment methods, currencies, shippable countries). Activity log and message surfaces are separated so modules and plugins describe their own domain labels in their own territory |
| Payment gateways | A foundation for growing beyond a local business into global commerce. Payment integrations attach through the same extension-point pattern, and international gateways ship as separate plugins |
| Access control | Control menus, features, and even data scope per role. Role + Permission + Scope three-tier access control provides flexible management that mirrors your organization |
| Identity verification (IDV) | Every verification point — signup, password reset, sensitive operations — is managed centrally through declarative route/hook-level policies. The core ships a mail provider built in, and external providers (Korean identity-verification services such as KG Inicis and NHN KCP, as well as SMS, PortOne, and Stripe Identity-style services) attach through the same provider contract. When the server returns HTTP 428, the frontend interceptor opens a verification modal automatically and replays the original request on success |
| Security | Automatic input validation and token-based authentication. Layered defense designed in from the start (CSRF/XSS/SQL injection), a real implementation of login throttling and account lockout (HTTP 423), and automatic blocking of installer endpoints once setup completes (HTTP 410) |
| Flexible screen composition | Define a screen structure and see it applied immediately. Web-app-grade dynamic screens are achievable with JSON declarations alone, no frontend infrastructure required |
| Layout editor | A WYSIWYG layout editor lets you place screen blocks directly and see the result right away |
| Proven foundation | Built on Laravel + React — a stack adopted by companies worldwide, offering high extensibility and flexible UI implementation |
| Shared cache system | CacheInterface plus three drivers (core/module/plugin) isolate key prefixes automatically (g7:core:, g7:module.{id}:, g7:plugin.{id}:). Tag-based automatic invalidation and central TTL management via g7_core_settings('cache.*_ttl') keep operations free of hardcoded values |
| Notification system | A three-tier model — Definition × Template × Recipients — supports independent multi-channel delivery over mail, database, and real-time broadcast (Reverb). Targeting by author, role, specific users, or permission holders, plus hook-based dispatch, lets modules register their own notifications freely |
| SEO | Powered by jaybizzle/crawler-detect, roughly 1,000 bot types (search engines, social unfurlers, AI search) are detected automatically: bots receive static HTML while regular users get the SPA. OG/Twitter card metadata, domain schemas declared by modules (Article/Product/Offer/AggregateRating), automatic and manual sitemap generation, and generator meta tags are all provided by the core |
| Activity log | Administrator and user activity is recorded and searchable automatically. The Monolog-based structure is easy to extend, and action labels resolve from a module's or plugin's own translation files first, so each domain describes itself |
| Search | Full-text search powered by Laravel Scout, covering key content such as products and posts |
| Layer | Technology |
|---|---|
| Backend | PHP 8.2+, Laravel 12.x, MySQL 8.0+, Redis 6.0+ |
| Frontend | React 19, Vite, Tailwind CSS 4 (dark mode supported) |
| Authentication | Laravel Sanctum (Bearer tokens) |
| Testing | PHPUnit 11.x, Vitest |
| Code quality | Laravel Pint (PSR-12) |
Gnuboard7
├── Core (Laravel 12)
│ ├── Controller → FormRequest → Service → Repository → Model
│ ├── Hook System (Action / Filter)
│ ├── Permission (Role → Permission → Scope)
│ ├── Identity Verification (Policy × Purpose × Provider × Message)
│ ├── Language Pack (virtual protected rows + ZIP/GitHub install + sub-key preservation)
│ ├── Notification (Definition × Template × Recipients)
│ └── SEO (Bot Detection → Static HTML → Cache → Sitemap)
│
├── Extensions
│ ├── Modules — board, commerce, page ...
│ ├── Plugins — payment, verification, marketing ...
│ ├── Templates — admin UI, user UI
│ └── LanguagePacks — official and third-party packs (Japanese and more)
│
└── Template Engine
├── JSON Layout → React Components
└── Dynamic Rendering + Data Binding
In Gnuboard7 you declare the UI structure in JSON, and the engine interprets it and renders React components.
- Build React-based UI from JSON declarations alone — screen development without React expertise
- Modules and plugins inject or extend UI dynamically through JSON, with no frontend build
- Develop and register custom React components when a screen needs something more advanced
- Because the UI is defined as data (JSON) rather than code, a WYSIWYG layout editor lets non-developers place and edit screen blocks and see the result immediately
flowchart TB
subgraph Backend ["🔧 Backend — Laravel"]
A["📄 JSON layout file"] --> B["⚙️ LayoutService"]
B --> |"inheritance<br/>extends / partial"| B
M["📦 Module layout"] -.-> |"layout_extensions<br/>extension_point injection"| B
P["🔌 Plugin layout"] -.-> |"layout_extensions<br/>extension_point injection"| B
B --> C["🔒 Permission filtering<br/>drop components per user"]
C --> D["📨 Merged JSON response<br/>cached · 1 hour TTL"]
end
subgraph Frontend ["⚛️ Frontend — React"]
D --> E["📥 LayoutLoader<br/>receive layout JSON"]
E --> F["💾 State init<br/>_global · _local · _computed"]
E --> G["🌐 Data source loading<br/>parallel API calls"]
F & G --> H["🎨 DynamicRenderer"]
H --> I{"❓ Condition eval<br/>if expression"}
I --> |"✅ true"| J["🗂️ ComponentRegistry<br/>name → React component"]
I --> |"❌ false"| K["⏭️ Skip rendering"]
J --> L["🔗 Data binding<br/>expression → value"]
L --> N["🖱️ Event binding<br/>onClick → ActionDispatcher"]
N --> O["✨ React render"]
end
subgraph Actions ["👆 User interaction"]
O --> |"click · input"| Q["🎯 ActionDispatcher"]
Q --> R["🧭 navigate — page transition"]
Q --> S["📡 apiCall — API request"]
Q --> T["🔄 setState — state change"]
Q --> U["📋 openModal — open a modal"]
S --> |"onSuccess · onError"| Q
T --> |"state change → re-render"| H
end
style Backend fill:#dbeafe,stroke:#2563eb,stroke-width:2px,color:#1e3a5f
style Frontend fill:#d1fae5,stroke:#059669,stroke-width:2px,color:#064e3b
style Actions fill:#fce7f3,stroke:#db2777,stroke-width:2px,color:#831843
style A fill:#2563eb,stroke:#1d4ed8,color:#fff
style B fill:#2563eb,stroke:#1d4ed8,color:#fff
style M fill:#7c3aed,stroke:#6d28d9,color:#fff
style P fill:#7c3aed,stroke:#6d28d9,color:#fff
style C fill:#dc2626,stroke:#b91c1c,color:#fff
style D fill:#059669,stroke:#047857,color:#fff
style E fill:#059669,stroke:#047857,color:#fff
style F fill:#0891b2,stroke:#0e7490,color:#fff
style G fill:#0891b2,stroke:#0e7490,color:#fff
style H fill:#d97706,stroke:#b45309,color:#fff
style I fill:#d97706,stroke:#b45309,color:#fff
style J fill:#2563eb,stroke:#1d4ed8,color:#fff
style K fill:#6b7280,stroke:#4b5563,color:#fff
style L fill:#7c3aed,stroke:#6d28d9,color:#fff
style N fill:#7c3aed,stroke:#6d28d9,color:#fff
style O fill:#059669,stroke:#047857,color:#fff
style Q fill:#e11d48,stroke:#be123c,color:#fff
style R fill:#be185d,stroke:#9d174d,color:#fff
style S fill:#be185d,stroke:#9d174d,color:#fff
style T fill:#be185d,stroke:#9d174d,color:#fff
style U fill:#be185d,stroke:#9d174d,color:#fff
linkStyle default stroke:#374151,stroke-width:2px
JSON layout example — the JSON below renders as a real React UI:
{
"data_sources": [
{ "id": "products", "endpoint": "/api/products", "method": "GET" }
],
"layout": {
"type": "basic", "name": "Div",
"children": [
{ "type": "basic", "name": "H1", "text": "$t:product_list" },
{
"type": "basic", "name": "Div",
"iteration": { "source": "{{products?.data?.data}}", "item_var": "$item" },
"children": [
{ "type": "basic", "name": "Span", "text": "{{$item.name}}" }
]
},
{
"type": "basic", "name": "Button", "text": "$t:add",
"if": "{{products?.data?.abilities?.can_create}}",
"actions": [{
"event": "onClick",
"handler": "navigate",
"params": { "path": "/products/create" }
}]
}
]
}
}Activating a module or plugin injects its UI and components automatically. Developers add or change UI with JSON alone — no separate frontend build — and UI elements are shown or hidden automatically according to permissions (abilities).
Four systems work together to hold the platform up.
- Minimal core modification — all business logic lives in modules and plugins
- Dynamic loading — discovered automatically by directory scan, with no
composer.jsonhardcoding - Hook-based extension — functionality is injected at the service layer through action and filter hooks
A lightweight hook system that operates separately from Laravel events. Actions handle side effects (logging, notifications); filters transform values (injecting defaults, extending permissions).
// Publish hooks from the service layer
HookManager::doAction('core.user.after_create', $user, $data);
$data = HookManager::applyFilters('core.user.filter_create_data', $data);
// A module listener subscribes to the hook (auto-discovered)
public static function getSubscribedHooks(): array
{
return [
'core.user.after_create' => ['method' => 'onUserCreated', 'priority' => 20],
];
}Modules and plugins only need to place a class in their Listeners/ directory and HookListenerRegistrar subscribes it automatically. Asynchronous execution through queue serialization is supported as well, and context such as Auth::user(), request()->ip(), and App::getLocale() is restored automatically inside the worker.
Built on CacheInterface, the core, modules, and plugins each manage their own cache without key collisions.
| Driver | Prefix | Purpose |
|---|---|---|
CoreCacheDriver |
g7:core:{key} |
Core services (layouts, SEO, notifications, settings) |
ModuleCacheDriver |
g7:module.{identifier}:{key} |
Per-module isolated cache (board and product lists, cooldowns) |
PluginCacheDriver |
g7:plugin.{identifier}:{key} |
Per-plugin isolated cache |
// Register a module service in the BaseModuleServiceProvider::$cacheServices array
// and it is injected from the constructor type hint alone (same as the storage pattern)
public function __construct(
private BoardRepositoryInterface $repository,
private CacheInterface $cache, // ← g7:module.sirsoft-board: prefix applied automatically
) {}- Central TTL management — every cache TTL follows
g7_core_settings('cache.*_ttl'). No hardcoding - Automatic invalidation — apply the
CacheInvalidatabletrait to a model and related caches are dropped by tag onsaved/deleted - Lifecycle integration — when a module is deactivated or removed,
ModuleManagerflushes that module's isolated cache in bulk - Frontend cache busting — incrementing
ext.cache_versionpropagates through the responseconfig.jsonand invalidates browser caches via a?v=query parameter
Multi-channel notifications are managed through a three-tier model: Definition × Template × Recipients.
┌─────────────────────┐ ┌───────────────────────┐ ┌─────────────────────┐
│ NotificationDefini- │ 1..N │ NotificationTemplate │ │ Recipients (JSON) │
│ tion ├──────┤ (independent per ├──────┤ - trigger_user │
│ type=order.created │ │ channel) │ │ - related_user │
│ variables=[...] │ │ channel=mail|db|... │ │ - role │
│ │ │ subject, body, │ │ - specific_users │
│ │ │ click_url │ │ │
└─────────────────────┘ └───────────────────────┘ └─────────────────────┘
- Definition — declares the notification type, supported channels, and variable metadata
- Template — an independent subject, body, and click URL per channel (
mail/database/broadcast). Administrators can customize them in multiple languages - Recipients — recipient rules declared as JSON per template. Because they are per-template, you can branch freely: "mail to the buyer, database notification to role holders"
// A module service only publishes a hook; the delivery pipeline runs automatically
HookManager::doAction('sirsoft-ecommerce.order.after_confirm', $order);
// ↓ NotificationHookListener → NotificationDispatcher:
// 1. Look up the order.confirmed definition
// 2. Iterate active templates (mail/database)
// 3. Resolve each template's recipients JSON → recipient collection
// 4. Deliver per channel to each recipient (GenericNotification)
// 5. Record the delivery in notification_logs- Three core notifications:
welcome,reset_password,password_changed - Seven e-commerce module notifications:
order_confirmed,order_shipped,order_completed,order_cancelled,new_order_admin,inquiry_received,inquiry_replied - Real-time broadcasting runs on Laravel Reverb (WebSocket). Where Reverb is not configured, it skips gracefully without errors
- A single
GenericNotificationclass handles every notification — adding a new notification type requires no new notification class
An operations tool for adding a new language without touching the core, with the same lifecycle as module, plugin, and template management (install → activate → update → remove, with automatic backup and rollback).
| Area | Behavior |
|---|---|
| Install paths | ZIP upload / GitHub URL / the lang-packs/_bundled bundled directory (synchronized in bulk on core updates) |
| Scope | Applied separately to the core, modules, plugins, and templates — a module pack activates only while the matching core pack is active |
| Preserving operator edits | Multilingual JSON columns record user overrides per sub-key (name.ko / name.ja), so editing one language's label preserves only that language while new languages sync automatically |
| Activation effects | On activation or deactivation, the entity seeders of affected modules and plugins re-run, so menus, permissions, roles, manifests, and notification labels reach the database immediately |
| Virtual protected rows | Korean and English are built into the core and bundled extensions and are always exposed as active and protected (editing and removal are blocked) |
| Security | Installation is blocked if a pack contains executable PHP beyond language translations |
Sixteen official Japanese (ja) bundled packs — the core plus the main modules, plugins, and templates — are ready to use, and step 4 of the installer links language pack cards to your module, plugin, and template selection so they can be installed together.
Details: docs/extension/language-packs.md (Korean)
Every verification point — signup, password reset, sensitive operations, the moment before payment — is managed centrally through declarative route/hook-level policies.
┌────────────────────┐ ┌─────────────────────┐ ┌──────────────────────┐
│ Policy │ │ Purpose │ │ Provider │
│ (enforcement point │ │ (verification goal, │ │ (mail, KCP, Inicis, │
│ failure mode, │ ◀▶ │ allowed channels, │ ◀▶ │ SMS, external IDV) │
│ step, conditions) │ │ source tracking) │ │ │
└────────────────────┘ └─────────────────────┘ └──────────────────────┘
│ │
└──────────▶ Message Template (policy × purpose) ◀──┘
│
GenericNotification
- Policy as the single source of truth — toggling a policy takes effect immediately without editing route code. Every API route matches against the policy database automatically
- 428 interceptor — when the server returns HTTP 428, the frontend opens a verification modal automatically and replays the original request once verification succeeds
- Declarative registration — modules and plugins declare
module.php::getIdentityPolicies()/getIdentityPurposes()/getIdentityMessages(), and those are registered automatically on activation or update while preserving operator edits - Message templates — define multilingual subjects and bodies per provider and per purpose/policy, falling back in the order policy → purpose → provider default
- External provider slots — plugins can inject their own SDK UI for services such as KCP, PortOne, Toss verification, or Stripe Identity through the standard G7 extension-point pattern
- History management — the admin screen offers tabs per verification method, unified search, multi-filters for status/purpose/channel/IP, and bulk destruction by retention period (180 days)
Details: docs/backend/identity-policies.md, docs/backend/identity-providers.md, docs/backend/identity-messages.md (Korean)
- PHP 8.2+ with the required extensions (30 in total), including
bcmath,ctype,curl,dom,fileinfo,gd,intl,mbstring,openssl,pdo_mysql,tokenizer,xml, andzip - MySQL 8.0+ or MariaDB 10.3+ (utf8mb4)
- Composer 2.x
- Node.js 20+ (only needed when building frontend assets)
- A web server (Apache or Nginx) with the document root pointed at
public/ - Redis 6.0+ (optional — recommended for cache and queue in production)
# 1. Clone the project
git clone https://github.com/gnuboard/g7.git
cd g7
# 2. Install PHP dependencies
composer install
# 3. Copy the environment file
cp .env.example .env
# 4. Point your web server's document root at the public/ directory,
# then open /install in a browser and follow the setup wizardThe setup wizard creates the application key, configures the database connection, runs the migrations, and lets you choose which modules, plugins, templates, and language packs to install. Once setup completes, the installer endpoints are blocked automatically (HTTP 410).
Detailed installation guide (Korean): INSTALL.md
| Module | Description |
|---|---|
| sirsoft-board | Boards — multiple boards, comments, file attachments |
| sirsoft-ecommerce | Storefront — products, orders, payments, shipping, coupons, product inquiries |
| sirsoft-page | Pages — static content management |
| Plugin | Description |
|---|---|
| sirsoft-pay_kginicis | KG Inicis payment integration (Korean payment gateway) |
| sirsoft-pay_nicepayments | NICE Payments integration (Korean payment gateway, unified checkout) |
| sirsoft-pay_nhnkcp | NHN KCP payment integration (Korean payment gateway, Standard Pay) |
| sirsoft-tosspayments | Toss Payments integration (Korean payment gateway) |
| sirsoft-verification_kginicis | KG Inicis identity verification (Korean identity verification) |
| sirsoft-verification_nhnkcp | NHN KCP mobile identity verification (Korean identity verification) |
| sirsoft-daum_postcode | Daum postcode lookup (Korean address search) |
| sirsoft-marketing | Marketing tools |
| sirsoft-ckeditor5 | CKEditor 5 editor |
| sirsoft-gdpr | Privacy and GDPR support |
| Template | Description |
|---|---|
| sirsoft-admin_basic | Default admin template |
| sirsoft-basic | Default user template |
Official language packs you can install alongside the initial setup, so the core and the main modules, plugins, and templates share one consistent translation from the start.
| Identifier | Description |
|---|---|
| g7-core-ja | Core, Japanese |
| g7-module-sirsoft-board-ja | Board module, Japanese |
| g7-module-sirsoft-ecommerce-ja | E-commerce module, Japanese |
| g7-module-sirsoft-page-ja | Page module, Japanese |
| g7-plugin-sirsoft-ckeditor5-ja | CKEditor 5 plugin, Japanese |
| g7-plugin-sirsoft-daum_postcode-ja | Daum postcode plugin, Japanese |
| g7-plugin-sirsoft-gdpr-ja | Privacy/GDPR plugin, Japanese |
| g7-plugin-sirsoft-marketing-ja | Marketing plugin, Japanese |
| g7-plugin-sirsoft-pay_kginicis-ja | KG Inicis payment plugin, Japanese |
| g7-plugin-sirsoft-pay_nicepayments-ja | NICE Payments plugin, Japanese |
| g7-plugin-sirsoft-pay_nhnkcp-ja | NHN KCP payment plugin, Japanese |
| g7-plugin-sirsoft-tosspayments-ja | Toss Payments plugin, Japanese |
| g7-plugin-sirsoft-verification_kginicis-ja | KG Inicis identity verification plugin, Japanese |
| g7-plugin-sirsoft-verification_nhnkcp-ja | NHN KCP mobile identity verification plugin, Japanese |
| g7-template-sirsoft-admin_basic-ja | Default admin template, Japanese |
| g7-template-sirsoft-basic-ja | Default user template, Japanese |
Korean and English are built into the core and bundled extensions and are always active without installation. Any other language can be added freely from a ZIP file or a GitHub URL.
Minimal implementations for learning the extension system. They appear in the admin UI when the "include hidden" toggle is on, and are always visible from the CLI.
| Identifier | Type | Description |
|---|---|---|
| gnuboard7-hello_module | Module | Memo CRUD plus a hook publishing demo |
| gnuboard7-hello_plugin | Plugin | Action/filter hook subscription demo |
| gnuboard7-hello_admin_template | Admin template | A minimal set of basic components |
| gnuboard7-hello_user_template | User template | Home page plus a memo list integration |
One Gnuboard7 installation can run a range of businesses.
| Model | Description | Status |
|---|---|---|
| Community | Boards, comments, member management | Stable |
| Commerce | Product registration, orders, payments, shipping management | Stable |
A migration tool from Gnuboard 5 is planned.
Documentation is currently available in Korean only. English documentation is planned.
| Document | Link |
|---|---|
| Installation guide | INSTALL.md |
| Full documentation | docs/README.md |
| System requirements | docs/requirements.md |
| Backend development | docs/backend/README.md |
| Frontend development | docs/frontend/README.md |
| Database | docs/database-guide.md |
| Extension system | docs/extension/README.md |
| Module development | docs/extension/module-basics.md |
| Plugin development | docs/extension/plugin-development.md |
| Template development | docs/extension/template-basics.md |
| Testing | docs/testing-guide.md |
| API reference | docs/backend/api/README.md |
| API documentation policy | docs/backend/api-documentation.md |
Gnuboard7 is an open-source project, and contributions of every kind are welcome.
- Bug reports and feature proposals: GitHub Issues
- Code style: Laravel Pint (PSR-12)
- Testing: PHPUnit (backend) + Vitest (frontend)
- AI collaboration: the repository ships a development rule specification for AI agents (AGENTS.md) along with MCP debugging tools, so AI tooling fits naturally into the workflow
Developed by SIRSOFT.
Thanks to everyone who reported an issue or suggested a feature that shipped — the list below is compiled from the attributions in our changelogs.
The list of code contributors is available on GitHub Contributors.
| Channel | Link |
|---|---|
| GitHub | github.com/gnuboard/g7 |
| SIR community (Korean) | sir.kr |
| Contact | minsup@sir.kr |
For details on recent changes, see the CHANGELOG (Korean).
If you discover a security vulnerability, please report it as a private post on the SIR inquiry board (Korean board), or email minsup@sir.kr.
Gnuboard7 is open-source software distributed under the MIT License.
Copyright (c) 2026 SIRSOFT
Made by SIRSOFT


