archlinux-de / flarum-theme-archlinux
Arch Linux Theme for Flarum
Package info
github.com/archlinux-de/flarum-theme-archlinux
Type:flarum-extension
pkg:composer/archlinux-de/flarum-theme-archlinux
1.3.0
2026-09-05 07:46 UTC
Requires
- php: ^8.3
- flarum/core: ^1.0.0
Requires (Dev)
- flarum/testing: ^1.0.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.0
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^4.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
This Flarum extension is specific to forum.archlinux.de. While the code itself is free software, please ensure to adhere to the Arch Linux trademark policy.
Installation
composer require archlinux-de/flarum-theme-archlinux
Development
just install
just test
just check
just check-frontend
test runs the unit test suite.
See development and scaffolding notes before refreshing Flarum CLI infrastructure or workflows.
Optional configuration:
To configure header and footer links add the following entries to /config.php:
<?php return [ // ... 'arch' => [ 'home' => 'https://www.archlinux.de/', 'navbar' => [ 'Start' => 'https://www.archlinux.de/', 'Pakete' => 'https://www.archlinux.de/packages', 'Forum' => 'https://forum.archlinux.de/', 'Wiki' => 'https://wiki.archlinux.de/title/Hauptseite', 'AUR' => 'https://aur.archlinux.de/', 'Download' => 'https://www.archlinux.de/download' ], 'navbar_selected' => 'Forum', 'footer' => [ 'Datenschutz' => 'https://www.archlinux.de/privacy-policy', 'Impressum' => 'https://www.archlinux.de/impressum' ] ] ];