{"id":37015104,"url":"https://github.com/siteman-io/cms","last_synced_at":"2026-01-14T01:30:41.949Z","repository":{"id":275360145,"uuid":"925857662","full_name":"siteman-io/cms","owner":"siteman-io","description":"Siteman is a simple CMS built on top of Laravel and Filament","archived":false,"fork":false,"pushed_at":"2025-12-10T13:23:25.000Z","size":2064,"stargazers_count":7,"open_issues_count":5,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-26T09:40:34.945Z","etag":null,"topics":["cms","filament","laravel","wordpress-alternative"],"latest_commit_sha":null,"homepage":"https://siteman.io","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/siteman-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"bambamboole"}},"created_at":"2025-02-01T22:53:13.000Z","updated_at":"2025-12-25T01:18:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"a7f3a102-0c52-4c53-be02-127f291fc314","html_url":"https://github.com/siteman-io/cms","commit_stats":null,"previous_names":["siteman-io/cms"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/siteman-io/cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteman-io%2Fcms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteman-io%2Fcms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteman-io%2Fcms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteman-io%2Fcms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siteman-io","download_url":"https://codeload.github.com/siteman-io/cms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siteman-io%2Fcms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408239,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T00:40:43.272Z","status":"ssl_error","status_checked_at":"2026-01-14T00:40:42.636Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cms","filament","laravel","wordpress-alternative"],"created_at":"2026-01-14T01:30:41.101Z","updated_at":"2026-01-14T01:30:41.927Z","avatar_url":"https://github.com/siteman-io.png","language":"PHP","funding_links":["https://github.com/sponsors/bambamboole"],"categories":[],"sub_categories":[],"readme":"# Siteman - the Website Manager\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/siteman/cms.svg?style=flat-square)](https://packagist.org/packages/siteman/cms)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/siteman-io/cms/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/siteman-io/cms/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![codecov](https://codecov.io/gh/siteman-io/cms/graph/badge.svg?token=JMXLWUKK1R)](https://codecov.io/gh/siteman-io/cms)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/siteman-io/cms/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/siteman-io/cms/actions?query=workflow%3A\"Fix+PHP+code+style+issues\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/siteman/cms.svg?style=flat-square)](https://packagist.org/packages/siteman/cms)\n\n![Siteman Logo](art/siteman_logo.png)\n\nSiteman leverages the power and flexibility of Laravel and Filament to provide a straightforward content management\nsolution. It serves as a robust foundation for building custom applications, offering a seamless and efficient\ndevelopment experience.\n\n## Documentation\nThe docs can be found at [siteman.io](https://siteman.io).\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require siteman/cms\n```\n\nYou can install Siteman via its own artisan command. It is interactive and will create the first user for you.\n\n```bash\nphp artisan siteman:install\n```\n\nNormally the `siteman:install` command should take care of everything. If you want to install it manually, you can so\nby enabling the Siteman plugin in your Filament panel.\n\n```php\n\n## Usage\n\n```php\n//...\n$panel-\u003eplugin(SitemanPlugin::make());\n//...\n```\n\n## Development\n\nWe use orchestra/testbench for a proper development experience. To get started you should fork the repository and clone\nit. Next you can set up the development environment by executing the following commands:\n\n```bash\ncomposer install\ncomposer prepare\ncomposer serve\n```\n\n## Testing\n\nWe use pest as our testing framework.\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [bambamboole](https://github.com/bambamboole)\n- [All Contributors](../../contributors)\n- [datlechin/filament-menu-builder](https://github.com/datlechin/filament-menu-builder) I learned so much about Filament\n  by reimplementing this package.\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiteman-io%2Fcms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiteman-io%2Fcms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiteman-io%2Fcms/lists"}