Documentation | PagibleAI CMS

Getting Started with PagibleAI CMS

PagibleAI CMS installs in seconds via Composer:

composer require aimeos/pagible
php artisan cms:install

That's it. PagibleAI CMS publishes migrations, configuration, and theme assets automatically. Your site is ready to publish.

PagibleAI CMS Configuration

PagibleAI CMS keeps configuration simple and centralized in config/cms/. Key settings include:

  • theme.cache — Choose your cache store for rendered pages
  • theme.ttl — Control how long theme data stays cached
  • theme.csp — Fine-tune Content Security Policy directives
  • ai.provider — Select your preferred AI provider for content generation
// PagibleAI CMS configuration — config/cms/theme.php
return [
    'cache' => env('APP_DEBUG') ? 'array' : 'file',
    'ttl' => env('CMS_THEME_TTL', 86400),
];

Multi-Tenancy in PagibleAI CMS

PagibleAI CMS supports multi-tenancy out of the box. Each tenant has isolated pages, elements, and files — all managed through a single installation with zero additional configuration.