{"id":13733859,"url":"https://github.com/ctidigital/magento2-configurator","last_synced_at":"2025-12-29T15:21:10.997Z","repository":{"id":10349600,"uuid":"62234006","full_name":"ctidigital/magento2-configurator","owner":"ctidigital","description":"Magento 2 Configurator","archived":false,"fork":false,"pushed_at":"2024-04-05T10:35:30.000Z","size":1338,"stargazers_count":169,"open_issues_count":30,"forks_count":60,"subscribers_count":18,"default_branch":"develop","last_synced_at":"2024-10-28T22:13:03.044Z","etag":null,"topics":["config","configuration","magento","magento2","magento2-extension","magento2-module","php"],"latest_commit_sha":null,"homepage":"https://ctidigital.github.io/magento2-configurator/","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/ctidigital.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2016-06-29T14:51:11.000Z","updated_at":"2024-10-23T22:13:37.000Z","dependencies_parsed_at":"2024-04-05T11:35:04.129Z","dependency_job_id":"665724a5-1681-44e3-9b82-356757b97d16","html_url":"https://github.com/ctidigital/magento2-configurator","commit_stats":{"total_commits":570,"total_committers":27,"mean_commits":21.11111111111111,"dds":0.6280701754385964,"last_synced_commit":"6c8934a0fe9510614d9f0d0d0d5451deadf00a4c"},"previous_names":[],"tags_count":69,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctidigital%2Fmagento2-configurator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctidigital%2Fmagento2-configurator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctidigital%2Fmagento2-configurator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctidigital%2Fmagento2-configurator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ctidigital","download_url":"https://codeload.github.com/ctidigital/magento2-configurator/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224720750,"owners_count":17358476,"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","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":["config","configuration","magento","magento2","magento2-extension","magento2-module","php"],"created_at":"2024-08-03T03:00:50.277Z","updated_at":"2025-12-29T15:21:10.906Z","avatar_url":"https://github.com/ctidigital.png","language":"PHP","funding_links":[],"categories":["Open Source Extensions","PHP"],"sub_categories":["Development Utilities"],"readme":"# Magento 2 Configurator\n\n[![Build Status](https://travis-ci.org/ctidigital/magento2-configurator.svg?branch=develop)](https://travis-ci.org/ctidigital/magento2-configurator)\n\n\nA Magento module initially created by [CTI Digital] to create and maintain database variables using files. This module aims to bring the following benefits to a Magento developer's work flow:\n\n  - Install Magento from scratch with important database based configuration ready.\n  - Share and collaborate configuration with other colleagues using your own versioning system.\n  - Keep versions of your configurations using your own versioning system.\n  - Split your configuration based on the environment you're developing on.\n\nIf you're interested to find out more about the background of the configurator, watch this lightning talk by [Raj Chevli] at Mage Titans in Manchester on [YouTube].\n\nThis is a work in progress and by no means for use with production environments (and probably not even development environments either just yet).\n\n## Testing Locally For Development\nIf you are contributing the module, please run the following commands to stand the best chance with Travis CI liking your code.\nThese test include PHP Code Sniffer, PHP Mess Detector, PHP Copy and Paste Detector, PHP Unit\n```\nphp vendor/bin/phpcs --standard=vendor/magento/magento-coding-standard/Magento2/ruleset.xml vendor/ctidigital/magento2-configurator/Model/ vendor/ctidigital/magento2-configurator/Console/ vendor/ctidigital/magento2-configurator/Test/ vendor/ctidigital/magento2-configurator/Api/ vendor/ctidigital/magento2-configurator/Component/ vendor/ctidigital/magento2-configurator/Exception/\nphp vendor/bin/phpmd vendor/ctidigital/magento2-configurator/Model/,vendor/ctidigital/magento2-configurator/Console/,vendor/ctidigital/magento2-configurator/Test/,vendor/ctidigital/magento2-configurator/Api/,vendor/ctidigital/magento2-configurator/Component/,vendor/ctidigital/magento2-configurator/Exception/ text cleancode,codesize,controversial,design,naming,unusedcode\nphp vendor/bin/phpcpd vendor/ctidigital/magento2-configurator/Model/ vendor/ctidigital/magento2-configurator/Console vendor/ctidigital/magento2-configurator/Test/ vendor/ctidigital/magento2-configurator/Api/ vendor/ctidigital/magento2-configurator/Component/ vendor/ctidigital/magento2-configurator/Exception/\nphp vendor/bin/phpunit vendor/ctidigital/magento2-configurator/Test/Unit/\n```\n\n## Integration tests\n- Configure your [Magento integration test environment](http://devdocs.magento.com/guides/v2.0/test/integration/integration_test_setup.html).\n- Add the XML below to dev/tests/integration/phpunit.xml.dist\n\n````\n\u003ctestsuite name=\"magento2-configurator\"\u003e\n    \u003cdirectory\u003e../../../vendor/ctidigital/magento2-configurator/Test/Integration\u003c/directory\u003e\n\u003c/testsuite\u003e\n ````\n \n- You can run the tests from the correct place on the command line\n\n````\n/dev/tests/integration$ ../../../vendor/bin/phpunit --testsuite \"magento2-configurator\"\n````\n\n- You can also add the magento PHP developer tools to your path, so that you do not have to specify location of phpunit\n````\nexport PATH=$PATH:/var/www/magento2/vendor/bin\n````\n## Unit tests \nIf you're developing a new component, please ensure you have your corresponding unit test which extends `ComponentAbstractTestCase` as that will test that your component has the required functions.\nDo also include sample files with your component that works \n\n## Travis\nWe also use Travis CI to automate part of the testing process (we are still looking to add more to this!).\nIt tests the following:\n* CodeSniffer\n* MessDetector\n* Copy \u0026 Paste Detection\n* Unit Tests\n* Run Configurator (we aim to run it on these versions)\n    1) Latest 3 minor versions\n    2) Latest release candidate (allowed to fail)\n\n## Getting Started\n1. Create a `master.yaml` file in `\u003cmage_root\u003e/app/etc/`. (see `Samples/master.yaml`)\n2. Enable Modules `CtiDigital_Configurator`,`FireGento_FastSimpleImport`.\n3. Run `bin/magento configurator:run --env=\"\u003cenvironment\u003e\"`\n\n### Usage\n\n* Listing available components `bin/magento configurator:list`\n* Running individual components `bin/magento configurator:run --env=\"\u003cenvironment\u003e\" --component=\"config\"`\n* Extra logs `bin/magento configurator:run --env=\"\u003cenvironment\u003e\" -v`\n\n## Roadmap for components to do\n\n| Component                 | Code Written       | Tests Written      | Sample Files       |\n|---------------------------|--------------------|--------------------|--------------------|\n| Websites                  | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| System Configuration      | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Categories                | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Products                  | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Attributes                | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Attribute Sets            | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Blocks                    | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Admin Roles               | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Admin Users               | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Pages                     | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Widgets                   | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Customer Groups           | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Media                     | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Tax Rules                 | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| API Integrations          | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Tax Rates                 | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Rewrites                  | :white_check_mark: | :white_check_mark: | :white_check_mark: |\n| Review Ratings            | :white_check_mark: | :white_check_mark: | :white_check_mark: |\n| Related Products          | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Up Sell Products          | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Cross Sell Products       | :white_check_mark: | :grey_exclamation: | :white_check_mark: |\n| Customers                 | :white_check_mark: | :white_check_mark: | :white_check_mark: |\n| SQL                       | :white_check_mark: | :white_check_mark: | :white_check_mark: |\n| Catalog Price Rules       | :white_check_mark: | :x:                | :white_check_mark: |\n| Shipping Table Rates      | :white_check_mark: | :white_check_mark: | :white_check_mark: |\n| Customer Attributes       | :white_check_mark: | :x:                | :white_check_mark: |\n| Shopping Cart Price Rules | :x:                | :x:                | :x:                |\n| Orders                    | :x:                | :x:                | :x:                |\n| Tiered Prices             | :x:                | :x:                | :x:                |\n\nLicense\n----\n\nMIT\n\n\n[CTI Digital]:http://www.ctidigital.com/\n[YouTube]:https://www.youtube.com/watch?v=iFkhAzJl2k0\n[Raj Chevli]:https://twitter.com/chevli\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fctidigital%2Fmagento2-configurator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fctidigital%2Fmagento2-configurator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fctidigital%2Fmagento2-configurator/lists"}