https://github.com/siteman-io/cms
Siteman is a simple CMS built on top of Laravel and Filament
https://github.com/siteman-io/cms
cms filament laravel wordpress-alternative
Last synced: 5 months ago
JSON representation
Siteman is a simple CMS built on top of Laravel and Filament
- Host: GitHub
- URL: https://github.com/siteman-io/cms
- Owner: siteman-io
- License: mit
- Created: 2025-02-01T22:53:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-10T13:23:25.000Z (6 months ago)
- Last Synced: 2025-12-26T09:40:34.945Z (5 months ago)
- Topics: cms, filament, laravel, wordpress-alternative
- Language: PHP
- Homepage: https://siteman.io
- Size: 1.97 MB
- Stars: 7
- Watchers: 0
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Siteman - the Website Manager
[](https://packagist.org/packages/siteman/cms)
[](https://github.com/siteman-io/cms/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://codecov.io/gh/siteman-io/cms)
[](https://github.com/siteman-io/cms/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[](https://packagist.org/packages/siteman/cms)

Siteman leverages the power and flexibility of Laravel and Filament to provide a straightforward content management
solution. It serves as a robust foundation for building custom applications, offering a seamless and efficient
development experience.
## Documentation
The docs can be found at [siteman.io](https://siteman.io).
## Installation
You can install the package via composer:
```bash
composer require siteman/cms
```
You can install Siteman via its own artisan command. It is interactive and will create the first user for you.
```bash
php artisan siteman:install
```
Normally the `siteman:install` command should take care of everything. If you want to install it manually, you can so
by enabling the Siteman plugin in your Filament panel.
```php
## Usage
```php
//...
$panel->plugin(SitemanPlugin::make());
//...
```
## Development
We use orchestra/testbench for a proper development experience. To get started you should fork the repository and clone
it. Next you can set up the development environment by executing the following commands:
```bash
composer install
composer prepare
composer serve
```
## Testing
We use pest as our testing framework.
```bash
composer test
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [bambamboole](https://github.com/bambamboole)
- [All Contributors](../../contributors)
- [datlechin/filament-menu-builder](https://github.com/datlechin/filament-menu-builder) I learned so much about Filament
by reimplementing this package.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.