{"id":13720881,"url":"https://github.com/pug-more/mageploy","last_synced_at":"2025-12-13T01:51:13.893Z","repository":{"id":6693814,"uuid":"7938990","full_name":"pug-more/mageploy","owner":"pug-more","description":"An experimental module to replicate Admin actions between different project environments","archived":false,"fork":false,"pushed_at":"2020-03-04T08:59:23.000Z","size":297,"stargazers_count":100,"open_issues_count":3,"forks_count":18,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-05-07T13:35:10.014Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"osl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pug-more.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":"2013-01-31T15:09:41.000Z","updated_at":"2025-02-06T00:40:45.000Z","dependencies_parsed_at":"2022-07-31T03:48:46.744Z","dependency_job_id":null,"html_url":"https://github.com/pug-more/mageploy","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/pug-more/mageploy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pug-more%2Fmageploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pug-more%2Fmageploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pug-more%2Fmageploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pug-more%2Fmageploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pug-more","download_url":"https://codeload.github.com/pug-more/mageploy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pug-more%2Fmageploy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27698000,"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":[],"created_at":"2024-08-03T01:01:09.346Z","updated_at":"2025-12-13T01:51:13.859Z","avatar_url":"https://github.com/pug-more.png","language":"PHP","funding_links":[],"categories":["Extensions"],"sub_categories":["Free"],"readme":"[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)\n\nMageploy is an extension for Magento deployment automation based on Admin actions tracking and replication between different project environments.\n\nHow does it work?\n-----------------\nBasically it's a tracker of invocations of Magento Controller Actions. It's based on the recording of actions in two files:\n\n* `{{configured_folder}}/mageploy_all.csv`\n* `{{configured_folder}}/mageploy_executed.csv`\n\nThe **mageploy_all.csv** file is **global** and should be put **under version control**. This file keeps track of each action invoked, storing parameters converted and serialized.\n\nThe **mageploy_executed.csv** is **local** and should **not be put under version control**. This file keeps track of actions invoked locally and is used to avoid invocations of already invoked actions.\n\nThe `{{configured_folder}}` placeholder can be either a relative or an absolute path; in case you use a relative path, \nthe Magento root folder will be used as base path.\n\n**Warning:** don't change the `{{configured_folder}}` after you have already started recording actions if you don't want to\n loose previous tracked actions.\n\nOnce you install mageploy and activate tracking (active by default), Mageploy's Trackers will store action invocations.\n\nOnce you commit and push your changes you will also push the **mageploy_all.csv**. Developers which will pull your changes will get the global list of actions updated and can replicate missing invocations by using the command line tool **shell/mageploy.php**.\n\nTo learn more about Mageploy, please refer to the Documentation on the  [Official Website](http://www.mageploy.com/).\n\nAS-IS\n-----\nAt the moment the following trackers have been developed for (not tested so much):\n\n* Attributes\n* Attribute Sets\n* System Config (uncomplete)\n* Categories\n* CMS Blocks\n* CMS Pages\n* Websites\n* Store Groups\n* Store Views\n\nTO-BE\n-----\nThe System\\Config tracker is only a POC. There are a lot of sections and groups in the System\\Config and we should provide encorders/decoders for all of them.\n\nFor example in some circumstances you can perform file ulpoad; this is not handled. At the same time IDs are not translated into UUIDs but there can be IDs which are specific to current installation. To handle all these cases the System\\Config tracker should be splitted into sections/groups trackers, each of them applying its enconding/deconding policy.\nIn Categories tracker file uploads are not handled yet.\n\nSo many more trackers should be developed for:\n\n* Complete System Config Sections/Groups\n* Complete Categories\n* Taxes\n* URL Rewrites\n* Promotions\n* Transactional Emails\n* Order Statuses\n\nRELEASE NOTES\n-------------\nHere we keep track of major changes between different versions.\n\nA change in the third version number part indicates minor changes or fixes.\n\nA change in the second version number part indicates changes in CSV format which implies that previous encoded CSVs could not be decoded any more.\n\n* 1.2.2 - fix previous version; add check for writable files and related warning in header banner\n* 1.2.1 - DON'T USE THIS VERSION - action recording is broken\n* 1.2.0 - add possibility to configure the folder where CSV files are created.\n* 1.1.3 - replaced deprecated join and split functions with equivalent implode and explode.\n* 1.1.2 - fix on displaying of error messages while executing actions.\n* 1.1.1 - fix on decode() declaration in Abstract class.\n* 1.1.0 - changed encoding/decoding for Block tracking; added code to reset Magento at every Action execution to avoid issues with objects in memory, like the Register. Added Tracket version control to prevent decoding of rows encoded with a different version of a Tracker.\n* 1.0.1 - fixed bug in CMS Blocks tracking: saving existing blocks didnt' work because encoding/decoding ignored block_id parameter.\n* 1.0.0 - first release\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpug-more%2Fmageploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpug-more%2Fmageploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpug-more%2Fmageploy/lists"}