{"id":21573519,"url":"https://github.com/vietdien2005/minion-phalcon","last_synced_at":"2026-05-18T01:37:39.429Z","repository":{"id":57077915,"uuid":"77574241","full_name":"vietdien2005/minion-phalcon","owner":"vietdien2005","description":"Minion CMS - Open source CMS. Written in Phalcon PHP Framework (v3.x). Structure folder like Laravel.","archived":false,"fork":false,"pushed_at":"2017-08-26T08:10:23.000Z","size":2388,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-18T06:32:37.805Z","etag":null,"topics":["cms","composer","phalcon","php"],"latest_commit_sha":null,"homepage":null,"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/vietdien2005.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-12-29T01:59:53.000Z","updated_at":"2020-09-01T07:37:40.000Z","dependencies_parsed_at":"2022-08-24T14:56:11.390Z","dependency_job_id":null,"html_url":"https://github.com/vietdien2005/minion-phalcon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vietdien2005/minion-phalcon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vietdien2005%2Fminion-phalcon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vietdien2005%2Fminion-phalcon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vietdien2005%2Fminion-phalcon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vietdien2005%2Fminion-phalcon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vietdien2005","download_url":"https://codeload.github.com/vietdien2005/minion-phalcon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vietdien2005%2Fminion-phalcon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33161950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"ssl_error","status_checked_at":"2026-05-17T22:39:10.741Z","response_time":107,"last_error":"SSL_read: 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","composer","phalcon","php"],"created_at":"2024-11-24T12:07:04.270Z","updated_at":"2026-05-18T01:37:39.414Z","avatar_url":"https://github.com/vietdien2005.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# minion-phalcon\n\nMinion CMS - Written in Phalcon PHP Framework (version 3.x supported). Inherit from [YonaCMS](https://github.com/oleksandr-torosh/yona-cms), but structure folder look like [Laravel](https://github.com/laravel/laravel)\n\n## Installation\n\n### Composer\n\nRun\n```\ncomposer create-project vietdien2005/minion-phalcon\n```\n\nOr create composer.json file and install dependencies:\n```json\n{  \n    \"require\": {  \n        \"vietdien2005/minion-phalcon\": \"master\"\n    }  \n}\n```\n```\ncomposer install\n```\n\nSometime, You should run composer update for update dependencies:\n```\ncomposer update\n```\n\nComposer is required. It will install required libraries.\n[How to install Composer](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx)\n\n### Config\n\nConfig environmet of your application in app/global.php\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.\n\n```\nserver {\n\n    listen   80;\n    server_name minion.dev;\n\n    index index.php index.html index.htm;\n    root /var/www/minion-phalcon/public;\n    charset utf-8;\n\n    location / {\n        try_files $uri $uri/ /index.php?_url=$uri\u0026$args;\n    }\n\n    location ~ \\.php$ {\n        fastcgi_pass  127.0.0.1:9000;\n        fastcgi_index /index.php;\n\n        include fastcgi_params;\n        fastcgi_split_path_info       ^(.+\\.php)(/.+)$;\n        fastcgi_param PATH_INFO       $fastcgi_path_info;\n        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n    }\n\n    location ~ /\\.ht {\n        deny all;\n    }\n\n}\n```\n\n### Admin dashboard\n\nOpen http://minion.dev/admin and auth:\n\n* login: admin\n* password: 12345678\n\nChange **admin** user password.\n\n### Database\nEdit **/config/environment/development.php** and setup database connection.\nImport MySQL dump file **minion-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### Elixir \n\nConfig elixir in gulpfile.js\n\nBuild development:\n```\ngulp watch\n```\n\nBuild production:\n```\ngulp --production\n```\n\n## Requirements\n\n* php 5.6+\n* phalcon 3.0.0+\n* mysql\n* php-intl\n* nginx\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvietdien2005%2Fminion-phalcon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvietdien2005%2Fminion-phalcon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvietdien2005%2Fminion-phalcon/lists"}