https://github.com/tallcms/cms
https://github.com/tallcms/cms
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tallcms/cms
- Owner: tallcms
- License: mit
- Created: 2026-01-19T07:13:22.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-05-31T03:33:26.000Z (17 days ago)
- Last Synced: 2026-05-31T05:14:03.152Z (17 days ago)
- Language: PHP
- Size: 2.14 MB
- Stars: 5
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# TallCMS
[](https://packagist.org/packages/tallcms/cms)
[](https://packagist.org/packages/tallcms/cms)
[](https://opensource.org/licenses/MIT)
A modern Content Management System package for Laravel Filament. Adds pages, posts, a block-based editor, media library, menus, comments, and forms to your existing Filament application.
> This repository is a **read-only subtree split** of the [tallcms/tallcms](https://github.com/tallcms/tallcms) monorepo, updated automatically via CI. File issues, PRs, and find full documentation at [tallcms/tallcms](https://github.com/tallcms/tallcms).
>
> For a full **standalone** CMS with themes, plugins, and auto-updates, see [tallcms/tallcms](https://github.com/tallcms/tallcms).
## Installation
```bash
composer require tallcms/cms
php artisan tallcms:install
```
Register the plugin in your panel provider:
```php
->plugin(TallCmsPlugin::make())
```
Add the `HasRoles` trait to your `User` model:
```php
use Spatie\Permission\Traits\HasRoles;
class User extends Authenticatable
{
use HasFactory, HasRoles, Notifiable;
}
```
Full guide: [Installation](https://github.com/tallcms/tallcms/blob/main/docs/gs-installation.md).
## Requirements
- PHP 8.2+ (Laravel 13 requires PHP 8.3+)
- Laravel 11, 12, or 13, Filament 5
- MySQL 8 / MariaDB 10.3 / SQLite
- Node 20+ (host app needs to build its Vite manifest for the admin to render)
## Documentation
Documentation lives in the monorepo's [docs/](https://github.com/tallcms/tallcms/tree/main/docs) directory. Highlights:
- [Installation](https://github.com/tallcms/tallcms/blob/main/docs/gs-installation.md)
- [Architecture](https://github.com/tallcms/tallcms/blob/main/docs/ref-architecture.md)
- [Blocks](https://github.com/tallcms/tallcms/blob/main/docs/dev-blocks.md)
- [Themes](https://github.com/tallcms/tallcms/blob/main/docs/dev-themes.md)
- [Plugins](https://github.com/tallcms/tallcms/blob/main/docs/dev-plugins.md)
- [API](https://github.com/tallcms/tallcms/blob/main/docs/dev-api.md)
## Commercial add-ons
- **[Multisite](https://tallcms.com/multisite)** — run multiple sites (each with its own domain, theme, settings, and content) from a single TallCMS install. Built for agencies and SaaS operators.
Browse the full catalog at [tallcms.com/marketplace](https://tallcms.com/marketplace).
## Need Help?
🐞 Bug? [Open an issue](https://github.com/tallcms/tallcms/issues/new).
🤔 Question or feature request? [Start a discussion](https://github.com/tallcms/tallcms/discussions).
🔐 Security issue? Email hello@tallcms.com. Do not file publicly.
## License
MIT — see [LICENSE](LICENSE).
## Links
- Website: https://tallcms.com
- Packagist: https://packagist.org/packages/tallcms/cms
- Monorepo: https://github.com/tallcms/tallcms