{"id":51133854,"url":"https://github.com/joho1968/tinymash","last_synced_at":"2026-06-25T15:30:54.373Z","repository":{"id":365735969,"uuid":"1243716391","full_name":"joho1968/tinymash","owner":"joho1968","description":"tinymash is a free and open source flat-file CMS for PHP 8.4+","archived":false,"fork":false,"pushed_at":"2026-06-18T15:53:02.000Z","size":2698,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-18T17:29:09.963Z","etag":null,"topics":["cms","flat-file-cms","flatfilecms","foss","opensource","oss","php","php84","signage","signage-platform","signage-player"],"latest_commit_sha":null,"homepage":"https://tinymash.joho.se","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joho1968.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2026-05-19T15:41:47.000Z","updated_at":"2026-06-18T15:51:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/joho1968/tinymash","commit_stats":null,"previous_names":["joho1968/tinymash"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/joho1968/tinymash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joho1968%2Ftinymash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joho1968%2Ftinymash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joho1968%2Ftinymash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joho1968%2Ftinymash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joho1968","download_url":"https://codeload.github.com/joho1968/tinymash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joho1968%2Ftinymash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34781500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","flat-file-cms","flatfilecms","foss","opensource","oss","php","php84","signage","signage-platform","signage-player"],"created_at":"2026-06-25T15:30:53.868Z","updated_at":"2026-06-25T15:30:54.368Z","avatar_url":"https://github.com/joho1968.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tinymash\n\ntinymash is a flat-file CMS and publishing platform for PHP 8.4.1+. It stores content on disk, does not require a database server, and ships with both a public site and an admin interface.\n\nIt is built for self-hosted publishing: pages, posts, author spaces, themes, plugins, media, tags, feeds, maintenance tasks, and a CLI for day-to-day operations.\n\n## What tinymash is for\n\ntinymash is a good fit if you want:\n\n- a database-free CMS\n- a small self-hosted publishing stack\n- pages and blog posts in the same system\n- multiple authors without adding a lot of platform weight\n- a PHP application that stays readable and easy to deploy\n\n## What ships with it\n\nThe shipped runtime includes:\n\n- a web-based admin interface\n- flat-file content, draft, user, and media storage\n- public themes and theme settings\n- plugin support\n- media uploads for editor and site imagery\n- feeds, tags, menus, search, backup/export, imports, and housekeeping tooling\n- a CLI for cache management, deploy builds, housekeeping, imports, backups, and other maintenance work\n\n## Normal installation path\n\nThe normal production path is to run tinymash from a prepared runtime tree and point your web server at `public/`.\n\nIf you are holding a tinymash deploy package, the short version is:\n\n1. copy the runtime tree to the server\n2. point the web root at `public/`\n3. make `data/`, `users/`, and `tmp/` writable by the PHP/web-server user\n4. create `app/config/tinymash.json` from `app/config/tinymash.json.example` if it does not already exist, then review it\n5. create the first admin user\n6. set up housekeeping from cron\n\nThe full step-by-step version is in `INSTALL.md`.\n\n## Runtime requirements\n\n- PHP `8.4.1` or newer\n- a web server such as Nginx or Apache\n- PHP-FPM or another supported PHP SAPI\n- writable `data/`, `users/`, and `tmp/` directories\n\nRequired PHP extensions:\n\n- `mbstring`\n- `json`\n- `dom`\n- `session`\n- `openssl`\n- `fileinfo`\n\nRecommended PHP extensions for full feature coverage:\n\n- `curl`\n- `gd` or `imagick`\n- `simplexml`\n- `exif`\n- `intl`\n- `zip`\n\nFor ordinary public and admin use, tinymash can run with a small PHP memory limit; `16M` is enough for many small sites. Larger batch jobs such as imports, backups/exports, media cleanup, and big upload/import runs may need more memory. The CLI import commands also accept explicit memory-limit options where that matters.\n\n## First admin user\n\nBefore you can use `/admin/login`, create at least one local admin user:\n\n```bash\nphp8.4 bin/tinymash.php user set-password admin strong-password-here superadmin\n```\n\n## Command line\n\nCommon operator commands are documented in [CLI.md](CLI.md).\n\n## Sample files\n\nPublic sample files live under `samples/`:\n\n- `samples/server/nginx.sample.conf`\n- `samples/server/apache.sample.conf`\n- `samples/server/php-fpm.sample.conf`\n- `samples/server/php-opcache-production.ini`\n- `samples/server/php-opcache-development.ini`\n- `samples/server/tinymash.logrotate`\n- `samples/cron/tinymash.cron`\n- `samples/deploy/rsync-deploy.sh`\n\n## Files and paths\n\n- `public/`: web root\n- `app/config/tinymash.json`: main runtime configuration; deploy packages ship `app/config/tinymash.json.example` as the safe starting point\n- `data/`: content, drafts, media, caches, plugin/theme data\n- `users/`: user records\n- `tmp/`: temporary runtime files\n- `bin/tinymash.php`: CLI entrypoint\n\n## Source checkouts\n\nIf you are running tinymash directly from a source checkout instead of a prepared runtime tree, install the PHP dependencies first and treat that as a developer/operator workflow rather than the normal end-user install path.\n\n## License\n\ntinymash is licensed under `AGPL-3.0-or-later`. See `LICENSE`.\n\nCopyright 2026 Joaquim Homrighausen; all rights reserved.\n\n## Credits\n\ntinymash uses a small set of bundled third-party packages and frontend assets, including:\n\n- Bootstrap\n- Bootstrap Icons\n- highlight.js\n- emoji-picker-element and bundled emoji picker data\n- `flightphp/core`\n- `flightphp/runway`\n- `latte/latte`\n- `league/commonmark`\n- `symfony/mailer`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoho1968%2Ftinymash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoho1968%2Ftinymash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoho1968%2Ftinymash/lists"}