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 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 keeps configuration simple and centralized in config/cms/. Key settings include:
theme.cache — Choose your cache store for rendered pagestheme.ttl — Control how long theme data stays cachedtheme.csp — Fine-tune Content Security Policy directivesai.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),
];
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.