### Update composer-managed plugins Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md This command updates all plugins that are managed by composer. Ensure you have the Frosh Tools plugin installed. ```bash bin/console frosh:composer-plugin:update ``` -------------------------------- ### Create extension checksums Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md Generate checksums for your Shopware extension files to ensure their integrity. An optional extension name can be specified. ```bash bin/console frosh:extension:checksum:create [extension-name] ``` -------------------------------- ### Check extension file integrity Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md Verify the integrity of your Shopware extension files by checking their checksums. An optional extension name can be provided. ```bash bin/console frosh:extension:checksum:check [extension-name] ``` -------------------------------- ### List Redis namespaces Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md This experimental command lists the current Redis namespaces. It is useful for managing Redis cache effectively. ```bash bin/console frosh:redis-namespace:list ``` -------------------------------- ### Monitor scheduled tasks and queue Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md Monitor your scheduled tasks and queue with this command and receive email notifications. Requires a sales channel ID. ```bash bin/console frosh:monitor ``` -------------------------------- ### Run robots.txt command Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md Use this command to add or change the robots.txt file on test shops to stop crawlers. It is part of the Frosh Tools plugin. ```bash bin/console frosh:dev:robots-txt ``` -------------------------------- ### Clean up Redis namespaces Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md This experimental command cleans up Redis namespaces. A dry-run option is available to preview changes without applying them. ```bash bin/console frosh:redis-namespace:cleanup [--dry-run] ``` -------------------------------- ### Configure File Checker exclusions Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md Suppress specific files from being restorable by the Shopware File Checker. Configure this in `config/packages/frosh_tools.yaml`. ```yaml frosh_tools: file_checker: exclude_files: - vendor/shopware/core/FirstFile.php - vendor/shopware/core/SecondFile.php ``` -------------------------------- ### Revert robots.txt changes Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md Use this command to revert changes made to the robots.txt file on test shops. This command is part of the Frosh Tools plugin. ```bash bin/console frosh:dev:robots-txt -r ``` -------------------------------- ### Clean up Redis tags Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md This command cleans up Redis tags, which can help in managing cache and improving performance. It is part of the Frosh Tools plugin. ```bash bin/console frosh:redis-tag:cleanup ``` -------------------------------- ### Delete unused Elasticsearch indices Source: https://github.com/friendsofshopware/froshtools/blob/main/README.md This command helps manage Elasticsearch by deleting indices that are no longer in use. It is part of the Frosh Tools plugin. ```bash bin/console frosh:es:delete-unused-indices ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.