{"id":18391567,"url":"https://github.com/fibrefox/shopware-cli-additions","last_synced_at":"2025-07-29T01:07:11.254Z","repository":{"id":227153994,"uuid":"770621603","full_name":"FibreFoX/shopware-cli-additions","owner":"FibreFoX","description":"Shopware Plugin for additional CLI commands","archived":false,"fork":false,"pushed_at":"2025-03-06T17:42:55.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-20T03:21:43.034Z","etag":null,"topics":["php8","shopware","shopware-plugin","shopware6","shopware6-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FibreFoX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2024-03-11T21:32:49.000Z","updated_at":"2025-03-06T17:42:58.000Z","dependencies_parsed_at":"2024-03-23T11:31:50.266Z","dependency_job_id":"883978e1-e348-408f-b3e1-57eaaa847817","html_url":"https://github.com/FibreFoX/shopware-cli-additions","commit_stats":null,"previous_names":["fibrefox/shopware-cli-additions"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/FibreFoX/shopware-cli-additions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FibreFoX%2Fshopware-cli-additions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FibreFoX%2Fshopware-cli-additions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FibreFoX%2Fshopware-cli-additions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FibreFoX%2Fshopware-cli-additions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FibreFoX","download_url":"https://codeload.github.com/FibreFoX/shopware-cli-additions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FibreFoX%2Fshopware-cli-additions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267613188,"owners_count":24115594,"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-07-28T02:00:09.689Z","response_time":68,"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":["php8","shopware","shopware-plugin","shopware6","shopware6-plugin"],"created_at":"2024-11-06T01:52:24.881Z","updated_at":"2025-07-29T01:07:11.231Z","avatar_url":"https://github.com/FibreFoX.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Additional CLI commands for Shopware 6\n\n![Plugin-Logo](./custom/plugins/DynamicFilesCLIAdditions/src/Resources/config/plugin.png)\n\n## About this plugin\n\nWhen installing and managing Shopware instances, especially when using Ansible for configuration management, a lot of crucial CLI commands are just plain MISSING. This project is intended for learning purposes and for having others participate from my learning.\n\nDeveloping with Docker image (like [shyim/shopware](https://hub.docker.com/r/shyim/shopware/)), which is often used for production environments.\n\nInitialized via (but modified afterwards):\n```sh\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console plugin:create --create-config DynamicFilesCLIAdditions\n```\n\n## Important note\n\nThis is a learning project (which is not yet published)! If you want to use it, use it at your own risk!\n\n## Compatibility\n\nShould work on Shopware version `6.5.x` and `6.6.x`. Does **not** work on `6.4.x` due to Shopware plugin changes of `EntityRepository`.\n\n## Provided commands\n\n```\nAvailable commands for the \"cli-additions\" namespace:\n  cli-additions:rules:get-id                            Get ID of rule with given name.\n  cli-additions:rules:list                              List all available rules.\n  cli-additions:system:acl-roles:list                   List all available user roles.\n  cli-additions:system:acl-roles:list-role-permissions  List all permissions for given user role.\n  cli-additions:system:skip-first-run-wizard            Marks the FirstRunWizard (FRW) as already executed.\n  cli-additions:system:usage-data:accept                Accept the terms and enable system usage data sharing.\n  cli-additions:system:usage-data:revoke                Revoke/Decline the terms for system usage data sharing.\n  cli-additions:system:usage-data:skip-for-user         Skip the usage data sharing request for given user.\n```\n\n\n## Dev-Setup\nSome commands I am using while development after `docker compose up`:\n\n### Install and activate plugins\n```\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console plugin:install DFCLIAdditions\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console plugin:activate DFCLIAdditions\n```\n\n### Skip that nasty First-Run-Wizard\n```\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console system:config:set core.frw.completedAt \"2024-03-01T12:00:00+00:00\"\n```\nor\n```\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console cli-additions:system:skip-first-run-wizard\n```\n\n## Knowhow\nhttps://symfony.com/doc/current/service_container/debug.html\n```\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console debug:container\n```\n\n```\ndocker compose run --rm -it --entrypoint /usr/bin/sudo shopware -E -u www-data php /var/www/html/bin/console cli-additions --help\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffibrefox%2Fshopware-cli-additions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffibrefox%2Fshopware-cli-additions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffibrefox%2Fshopware-cli-additions/lists"}