duon/cms

Duon content management system and framework

Maintainers

Details

github.com/duoncode/cms

Source

Issues

Installs: 54

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/duon/cms

dev-main 2026-01-05 15:17 UTC

This package is auto-updated.

Last update: 2026-01-09 12:08:31 UTC


README

⚠️ Note: This library is under active development, some of the listed features are still experimental and subject to change. Large parts of the documentation are missing.

Settings

'session.authcookie' => '<app>_auth', // Name of the auth cookie
'session.expires' => 60 * 60 * 24,    // One day by default

Test database:

CREATE DATABASE duon_cms_test_db WITH TEMPLATE = template0 ENCODING = 'UTF8';
CREATE USER duon_cms_test_user PASSWORD 'duon_cms_test_password';
GRANT ALL PRIVILEGES ON DATABASE duon_cms_test_db TO duon_cms_test_user;
ALTER DATABASE duon_cms_test_db OWNER TO duon_cms_test_user;

to allow recreation via command RecreateDb:

ALTER USER duon_cms_test_user SUPERUSER;

System Requirements:

apt install php8.3 php8.3-pgsql php8.3-gd php8.3-xml php8.3-intl php8.3-curl

For development

apt install php8.3 php8.3-xdebug

macOS/homebrew:

brew install php php-intl