{"id":13805564,"url":"https://github.com/alexander-torosh/yona-cms","last_synced_at":"2025-12-12T02:51:12.176Z","repository":{"id":19676359,"uuid":"22930169","full_name":"alexander-torosh/yona-cms","owner":"alexander-torosh","description":"CMS based on Phalcon PHP Framework with modular structure","archived":false,"fork":false,"pushed_at":"2021-08-31T13:18:44.000Z","size":60412,"stargazers_count":370,"open_issues_count":7,"forks_count":109,"subscribers_count":60,"default_branch":"master","last_synced_at":"2025-10-22T09:25:16.024Z","etag":null,"topics":["phalcon","phalcon-php","phalcon-php-framework","php","yona-cms"],"latest_commit_sha":null,"homepage":"http://yonacms.com/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexander-torosh.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-08-13T20:26:40.000Z","updated_at":"2025-10-15T22:42:03.000Z","dependencies_parsed_at":"2022-08-29T11:20:41.703Z","dependency_job_id":null,"html_url":"https://github.com/alexander-torosh/yona-cms","commit_stats":null,"previous_names":["oleksandr-torosh/yona-cms"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/alexander-torosh/yona-cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexander-torosh%2Fyona-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexander-torosh%2Fyona-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexander-torosh%2Fyona-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexander-torosh%2Fyona-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexander-torosh","download_url":"https://codeload.github.com/alexander-torosh/yona-cms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexander-torosh%2Fyona-cms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27675309,"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-12-12T02:00:06.775Z","response_time":129,"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":["phalcon","phalcon-php","phalcon-php-framework","php","yona-cms"],"created_at":"2024-08-04T01:01:02.370Z","updated_at":"2025-12-12T02:51:12.157Z","avatar_url":"https://github.com/alexander-torosh.png","language":"PHP","funding_links":[],"categories":["CMS \u0026 Blogs"],"sub_categories":[],"readme":"# Yona CMS\n\n[![Build Status](https://scrutinizer-ci.com/g/alexander-torosh/yona-cms/badges/build.png?b=master)](https://scrutinizer-ci.com/g/alexander-torosh/yona-cms/build-status/master)\n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/alexander-torosh/yona-cms/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/alexander-torosh/yona-cms/?branch=master)\n\nYona CMS - open source content management system (CMS). Written in Phalcon PHP Framework (version 3.x supported)\n\nHas a convenient modular structure. Has simple configuration and architecture. Can be easily modified for any task with any loads.\n\n[Project website](http://yonacms.com/)  \n\n## New Modern Yona CMS 2 with Phalcon 4.0 and PHP 7.3\n\nCheck ongoing development process in the branch [v2.0.0](https://github.com/alexander-torosh/yona-cms/tree/v2.0.0)\n\n## PHP 7 support, Docker\n\nFor using complete Docker stack check this branch [php7.0](https://github.com/alexander-torosh/yona-cms/tree/php7.0)\n\n## Installation\n\n### Composer\n\nRun\n```\ncomposer create-project oleksandr-torosh/yona-cms -s dev\n```\n\nOr create composer.json file and install dependencies:\n```json\n{  \n    \"require\": {  \n        \"oleksandr-torosh/yona-cms\": \"dev-master\"  \n    }  \n}\n```\n```\ncomposer install\n```\n\nAfter some time, do not forget run composer update for update dependencies:\n```\ncomposer update\n```\n\nComposer is required. It will install required libraries.\nIf you have error with **autoload.php** file, the reason - missed **composer update** installation step.\n\n[How to install Composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx)\n\n### Permissions\n\n```\nchmod a+w data -R\nchmod a+w public/assets -R\nchmod a+w public/img -R\nchmod a+w public/robots.txt\n```\n\n### Nginx\n\nExample of configuration for php-fpm + nginx. Parameter APPLICATION_ENV has value “development”. Don’t forget remove it on production server.\n\n```\nserver {\n\n    listen   80;\n    server_name yona-cms.dev;\n\n    index index.php;\n    set $root_path '/var/www/yona-cms/public';\n    root $root_path;\n\n    try_files $uri $uri/ @rewrite;\n\n    location @rewrite {\n        rewrite ^/(.*)$ /index.php?_url=/$1;\n    }\n\n    location ~ \\.php {\n        fastcgi_pass unix:/var/run/php5-fpm.sock;\n        # fastcgi_pass 127.0.0.1:9000;\n\n        fastcgi_index index.php;\n\n        include /etc/nginx/fastcgi_params;\n\n        fastcgi_split_path_info       ^(.+\\.php)(/.+)$;\n        fastcgi_param PATH_INFO       $fastcgi_path_info;\n        fastcgi_param APPLICATION_ENV \"development\";\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n    }\n\n    location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {\n        root $root_path;\n    }\n\n    location ~ /\\.ht {\n        deny all;\n    }\n\n}\n```\n\n### Apache\n.htaccess file are ready configured\n\n### Admin dashboard\n\nOpen http://yona-cms/admin and auth:\n\n* login: yona\n* password: yonacmsphalcon\n\nChange **admin** user password and delete **yona** user.\n\n### Database\nEdit **/app/config/environment/development.php** and setup database connection.\nImport MySQL dump file **yona-cms.sql**\n\n### Phinx migrations\n\nhttps://phinx.org/\nLibrary for creation, executing and rollback migrations\n\nCreation migration class in /data/migrations\n```\nphp vendor/bin/phinx create NewMigrationName\n```\n\nStatus\n```\nphp vendor/bin/phinx -e development status\n```\n\nExecuting new migrations\n```\nphp vendor/bin/phinx -e development migrate\n```\n\nRollback\n```\nphp vendor/bin/phinx -e development rollback\n```\n\nYou can set default environment for your localhost user\n```\nsudo nano ~/.bashrc\n```\nAdd line\n```\nexport PHINX_ENVIRONMENT=development\n```\n\n## Features\n\n* Yona CMS saves a lot of time in starting necessary basic functionality for any project\n* The modular structure with a convenient hierarchy that is based on namespaces\n* Each module can serve as a separate independent component. Have its own routes, helpers, css, js assets\n* Multi-lingual. Manage an unlimited number of languages and translations directly from admin\n* Yona CMS is really fast!\n\nCurrent version and updates in [CHANGELOG.md](https://github.com/oleksandr-torosh/yona-cms/blob/master/CHANGELOG.md)\n\n## Requirements\n\n* php 5.6+\n* phalcon 3.0.0+\n* mysql\n* php-intl\n* apache (+mod_rewrite) or nginx\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexander-torosh%2Fyona-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexander-torosh%2Fyona-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexander-torosh%2Fyona-cms/lists"}