{"id":20723255,"url":"https://github.com/johncms/johncms","last_synced_at":"2025-10-14T15:30:30.080Z","repository":{"id":26665817,"uuid":"30122305","full_name":"johncms/johncms","owner":"johncms","description":"JohnCMS Content Management System","archived":false,"fork":false,"pushed_at":"2025-07-13T21:09:12.000Z","size":28442,"stargazers_count":56,"open_issues_count":20,"forks_count":28,"subscribers_count":10,"default_branch":"develop","last_synced_at":"2025-07-13T23:26:24.320Z","etag":null,"topics":["cms","johncms","mobile","mysql","php"],"latest_commit_sha":null,"homepage":"https://johncms.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/johncms.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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}},"created_at":"2015-01-31T18:50:37.000Z","updated_at":"2024-12-29T03:01:16.000Z","dependencies_parsed_at":"2025-01-09T23:36:04.253Z","dependency_job_id":"3db22186-f438-44f8-8549-5c21dbcaecc6","html_url":"https://github.com/johncms/johncms","commit_stats":{"total_commits":2702,"total_committers":15,"mean_commits":"180.13333333333333","dds":0.4829755736491488,"last_synced_commit":"3908b6c8a99ba3deaf8caff3bcb78a961867f4f6"},"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/johncms/johncms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johncms%2Fjohncms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johncms%2Fjohncms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johncms%2Fjohncms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johncms%2Fjohncms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johncms","download_url":"https://codeload.github.com/johncms/johncms/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johncms%2Fjohncms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279019321,"owners_count":26086711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"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","johncms","mobile","mysql","php"],"created_at":"2024-11-17T04:08:05.418Z","updated_at":"2025-10-14T15:30:29.064Z","avatar_url":"https://github.com/johncms.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [JohnCMS 10](https://johncms.com)\n\n[![GitHub](https://img.shields.io/github/license/johncms/johncms?color=blue)](https://github.com/johncms/johncms/blob/develop/LICENSE)\n[![Source Code](http://img.shields.io/badge/source-johncms/johncms-blue.svg)](https://github.com/johncms/johncms)\n[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/johncms/johncms.svg?label=stable)](https://github.com/johncms/johncms/releases)\n\n[![PHP-CI](https://github.com/johncms/johncms/workflows/PHP-CI/badge.svg?branch=develop)](https://github.com/johncms/johncms/actions)\n[![Crowdin](https://badges.crowdin.net/johncms/localized.svg)](https://crowdin.com/project/johncms)\n\nThis version is at an early stage of development. Many things may not work or work not as intended.\n\n## System requirements\n\n- PHP 8.1 and higher\n- MySQL 5.7\n- PHP configured to use MySQL Native Driver (mysqlnd)\n- .htaccess support or any server configured to forward requests to **/public/index.php**\n\n## Installation\n\n**To install the general availability version**, go to the [**project website**](https://johncms.com/downloads) and download the latest available distributive.\nThen follow the installation instructions that came with it.\n\n**To install the developer version**, you must have a [Composer](https://getcomposer.org) dependency manager, [NodeJS](https://nodejs.org/en/)\nand [GIT](https://git-scm.com/) version control system.\n1. Clone or download this repository on local workstation.\n2. Assign the repository folder as Apache virtual host, or move contents to the previously created virtual host folder.\n3. Create MySQL Database.\n4. Open the console in the virtual host folder and install the dependencies using the command\n```bash\nnpm install \u0026\u0026 composer install \u0026\u0026 npm run build\n```\n5. Open the url in your browser (replace your.site to your virtualhost name): http://your.site/install and follow the instructions in the installer.\n6. **This is all done**. If you go to the address of your virtual host from the browser, you should see a working site with demo data.\n\n## Installation in Docker\n**To install the developer version**, you must have a [Docker](https://www.docker.com/) and [GIT](https://git-scm.com/) version control system.\n1. Clone or download this repository on local workstation.\n```bash\ngit clone https://github.com/johncms/johncms.git johncms\ncd johncms\n```\n2. Start the container\n```bash\ndocker-compose up -d\n```\n3. Open the container console.\n```bash\ndocker exec -it $(docker ps -q -f name=ubuntu) bash\n```\n4. Build assets and install dependencies\n```bash\nnpm install \u0026\u0026 composer install \u0026\u0026 npm run build\n```\n5. Install the system in your browser using the following data\n\n    Open the address http://localhost:8000\n    \n    DB Host: **mariadb**\n\n    DB Name: **johncms**\n    \n    DB User: **johncms**\n    \n    DB Password: **password**\n\n\n## Problems and solutions\n\nWhen you get updates from the repository, you need to follow the changes of some files.\n\n- If composer.json has been changed, you need to run the command `composer install`.\n- After updating or after changing routes, run the command `php johncms cache:clear`.\n\nAlso, after performing the update, you can run the following command:\n```bash\nmake cms-update\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohncms%2Fjohncms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohncms%2Fjohncms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohncms%2Fjohncms/lists"}