├── .devcontainer.json ├── .github └── workflows │ ├── cherry-pick.yml │ ├── code-style.yml │ ├── store-info.yml │ └── store.yml ├── .gitignore ├── .shopware-extension.yml ├── LICENSE.md ├── README.md ├── composer.json ├── frosh-tools-schema.json ├── phpstan.neon.dist └── src ├── Command ├── DeleteUnusedIndicesCommand.php ├── DevRobotsTxtCommand.php ├── ExtensionChecksumCheckCommand.php ├── ExtensionChecksumCreateCommand.php ├── MonitorCommand.php ├── RedisNamespaceCleanupCommand.php ├── RedisNamespaceListCommand.php ├── RedisTagCleanupCommand.php └── UpdateComposerPluginsCommand.php ├── Components ├── CacheAdapter.php ├── CacheHelper.php ├── CacheRegistry.php ├── Elasticsearch │ ├── AdminInfoSubscriberEventListener.php │ ├── DisabledElasticsearchManager.php │ └── ElasticsearchManager.php ├── Exception │ └── CannotClearCacheException.php ├── ExtensionChecksum │ ├── ExtensionFileHashService.php │ └── Struct │ │ ├── ExtensionChecksumCheckResult.php │ │ └── ExtensionChecksumStruct.php ├── Health │ ├── Checker │ │ ├── CheckerInterface.php │ │ ├── HealthChecker │ │ │ ├── DebugChecker.php │ │ │ ├── HealthCheckerInterface.php │ │ │ ├── MysqlChecker.php │ │ │ ├── PhpChecker.php │ │ │ ├── PhpFpmChecker.php │ │ │ ├── ProductionChecker.php │ │ │ ├── QueueChecker.php │ │ │ ├── SwagSecurityChecker.php │ │ │ ├── SystemInfoChecker.php │ │ │ ├── SystemTimeChecker.php │ │ │ └── TaskChecker.php │ │ └── PerformanceChecker │ │ │ ├── AdminWorkerChecker.php │ │ │ ├── CompressionMethodChecker.php │ │ │ ├── DisableAppUrlExternalCheckChecker.php │ │ │ ├── DisableSymfonySecretsChecker.php │ │ │ ├── DisabledMailUpdatesChecker.php │ │ │ ├── EsChecker.php │ │ │ ├── FineGrainedCachingChecker.php │ │ │ ├── FixCacheIdSetChecker.php │ │ │ ├── IncrementStorageChecker.php │ │ │ ├── LoggerLevelChecker.php │ │ │ ├── MailOverQueueChecker.php │ │ │ ├── MessengerAutoSetupChecker.php │ │ │ ├── MysqlSettingsChecker.php │ │ │ ├── PerformanceCheckerInterface.php │ │ │ ├── PhpSettingsChecker.php │ │ │ ├── ProductStreamIndexingChecker.php │ │ │ ├── QueueConnectionChecker.php │ │ │ └── RedisTagAwareChecker.php │ ├── HealthCollection.php │ ├── PerformanceCollection.php │ └── SettingsResult.php ├── LineReader.php ├── Planuml.php └── StateMachines │ ├── ExportInterface.php │ ├── Mermaid.php │ └── Plantuml.php ├── Controller ├── CacheController.php ├── ElasticsearchController.php ├── ExtensionFilesController.php ├── HealthController.php ├── LogController.php ├── QueueController.php ├── ScheduledTaskController.php ├── ShopwareFilesController.php └── StateMachineController.php ├── DependencyInjection ├── CacheCompilerPass.php ├── Configuration.php ├── DisableElasticsearchCompilerPass.php ├── FroshToolsExtension.php └── SymfonyConfigCompilerPass.php ├── FroshTools.php └── Resources ├── app └── administration │ ├── package-lock.json │ ├── package.json │ └── src │ ├── api │ ├── elasticsearch.js │ ├── frosh-tools.js │ └── index.js │ ├── main.js │ ├── module │ └── frosh-tools │ │ ├── acl │ │ └── index.js │ │ ├── component │ │ ├── frosh-tools-tab-cache │ │ │ ├── index.js │ │ │ ├── style.scss │ │ │ └── template.twig │ │ ├── frosh-tools-tab-elasticsearch │ │ │ ├── index.js │ │ │ └── template.twig │ │ ├── frosh-tools-tab-files │ │ │ ├── index.js │ │ │ └── template.twig │ │ ├── frosh-tools-tab-index │ │ │ ├── index.js │ │ │ ├── style.scss │ │ │ └── template.twig │ │ ├── frosh-tools-tab-logs │ │ │ ├── index.js │ │ │ ├── style.scss │ │ │ └── template.twig │ │ ├── frosh-tools-tab-queue │ │ │ ├── index.js │ │ │ ├── style.scss │ │ │ └── template.twig │ │ ├── frosh-tools-tab-scheduled │ │ │ ├── index.js │ │ │ ├── style.scss │ │ │ └── template.twig │ │ └── frosh-tools-tab-state-machines │ │ │ ├── index.js │ │ │ ├── style.scss │ │ │ └── template.html.twig │ │ ├── index.js │ │ ├── page │ │ └── index │ │ │ ├── frosh-tools.scss │ │ │ ├── index.js │ │ │ └── template.twig │ │ └── snippet │ │ ├── de-DE.json │ │ └── en-GB.json │ └── overrides │ ├── sw-data-grid-inline-edit │ ├── index.js │ └── template.twig │ └── sw-version │ ├── index.js │ └── template.twig ├── config ├── config.xml ├── plugin.png ├── routes.xml └── services.xml ├── store ├── de.md ├── de_manual.md ├── en.md ├── en_manual.md ├── icon.png ├── img-0.png ├── img-1.png ├── img-2.png ├── img-3.png └── img-4.png └── views └── administration ├── mermaid └── state-machine.html.twig └── plantuml └── state-machine.puml.twig /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/cherry-pick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.github/workflows/cherry-pick.yml -------------------------------------------------------------------------------- /.github/workflows/code-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.github/workflows/code-style.yml -------------------------------------------------------------------------------- /.github/workflows/store-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.github/workflows/store-info.yml -------------------------------------------------------------------------------- /.github/workflows/store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.github/workflows/store.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.shopware-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/.shopware-extension.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/composer.json -------------------------------------------------------------------------------- /frosh-tools-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/frosh-tools-schema.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Command/DeleteUnusedIndicesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/DeleteUnusedIndicesCommand.php -------------------------------------------------------------------------------- /src/Command/DevRobotsTxtCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/DevRobotsTxtCommand.php -------------------------------------------------------------------------------- /src/Command/ExtensionChecksumCheckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/ExtensionChecksumCheckCommand.php -------------------------------------------------------------------------------- /src/Command/ExtensionChecksumCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/ExtensionChecksumCreateCommand.php -------------------------------------------------------------------------------- /src/Command/MonitorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/MonitorCommand.php -------------------------------------------------------------------------------- /src/Command/RedisNamespaceCleanupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/RedisNamespaceCleanupCommand.php -------------------------------------------------------------------------------- /src/Command/RedisNamespaceListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/RedisNamespaceListCommand.php -------------------------------------------------------------------------------- /src/Command/RedisTagCleanupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/RedisTagCleanupCommand.php -------------------------------------------------------------------------------- /src/Command/UpdateComposerPluginsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Command/UpdateComposerPluginsCommand.php -------------------------------------------------------------------------------- /src/Components/CacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/CacheAdapter.php -------------------------------------------------------------------------------- /src/Components/CacheHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/CacheHelper.php -------------------------------------------------------------------------------- /src/Components/CacheRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/CacheRegistry.php -------------------------------------------------------------------------------- /src/Components/Elasticsearch/AdminInfoSubscriberEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Elasticsearch/AdminInfoSubscriberEventListener.php -------------------------------------------------------------------------------- /src/Components/Elasticsearch/DisabledElasticsearchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Elasticsearch/DisabledElasticsearchManager.php -------------------------------------------------------------------------------- /src/Components/Elasticsearch/ElasticsearchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Elasticsearch/ElasticsearchManager.php -------------------------------------------------------------------------------- /src/Components/Exception/CannotClearCacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Exception/CannotClearCacheException.php -------------------------------------------------------------------------------- /src/Components/ExtensionChecksum/ExtensionFileHashService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/ExtensionChecksum/ExtensionFileHashService.php -------------------------------------------------------------------------------- /src/Components/ExtensionChecksum/Struct/ExtensionChecksumCheckResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/ExtensionChecksum/Struct/ExtensionChecksumCheckResult.php -------------------------------------------------------------------------------- /src/Components/ExtensionChecksum/Struct/ExtensionChecksumStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/ExtensionChecksum/Struct/ExtensionChecksumStruct.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/CheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/CheckerInterface.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/DebugChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/DebugChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/HealthCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/HealthCheckerInterface.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/MysqlChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/MysqlChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/PhpChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/PhpChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/PhpFpmChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/PhpFpmChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/ProductionChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/ProductionChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/QueueChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/QueueChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/SwagSecurityChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/SwagSecurityChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/SystemInfoChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/SystemInfoChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/SystemTimeChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/SystemTimeChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/HealthChecker/TaskChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/HealthChecker/TaskChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/AdminWorkerChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/AdminWorkerChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/CompressionMethodChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/CompressionMethodChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/DisableAppUrlExternalCheckChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/DisableAppUrlExternalCheckChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/DisableSymfonySecretsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/DisableSymfonySecretsChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/DisabledMailUpdatesChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/DisabledMailUpdatesChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/EsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/EsChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/FineGrainedCachingChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/FineGrainedCachingChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/FixCacheIdSetChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/FixCacheIdSetChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/IncrementStorageChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/IncrementStorageChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/LoggerLevelChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/LoggerLevelChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/MailOverQueueChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/MailOverQueueChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/MessengerAutoSetupChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/MessengerAutoSetupChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/MysqlSettingsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/MysqlSettingsChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/PerformanceCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/PerformanceCheckerInterface.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/PhpSettingsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/PhpSettingsChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/ProductStreamIndexingChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/ProductStreamIndexingChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/QueueConnectionChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/QueueConnectionChecker.php -------------------------------------------------------------------------------- /src/Components/Health/Checker/PerformanceChecker/RedisTagAwareChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/Checker/PerformanceChecker/RedisTagAwareChecker.php -------------------------------------------------------------------------------- /src/Components/Health/HealthCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/HealthCollection.php -------------------------------------------------------------------------------- /src/Components/Health/PerformanceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/PerformanceCollection.php -------------------------------------------------------------------------------- /src/Components/Health/SettingsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Health/SettingsResult.php -------------------------------------------------------------------------------- /src/Components/LineReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/LineReader.php -------------------------------------------------------------------------------- /src/Components/Planuml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/Planuml.php -------------------------------------------------------------------------------- /src/Components/StateMachines/ExportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/StateMachines/ExportInterface.php -------------------------------------------------------------------------------- /src/Components/StateMachines/Mermaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/StateMachines/Mermaid.php -------------------------------------------------------------------------------- /src/Components/StateMachines/Plantuml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Components/StateMachines/Plantuml.php -------------------------------------------------------------------------------- /src/Controller/CacheController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/CacheController.php -------------------------------------------------------------------------------- /src/Controller/ElasticsearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/ElasticsearchController.php -------------------------------------------------------------------------------- /src/Controller/ExtensionFilesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/ExtensionFilesController.php -------------------------------------------------------------------------------- /src/Controller/HealthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/HealthController.php -------------------------------------------------------------------------------- /src/Controller/LogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/LogController.php -------------------------------------------------------------------------------- /src/Controller/QueueController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/QueueController.php -------------------------------------------------------------------------------- /src/Controller/ScheduledTaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/ScheduledTaskController.php -------------------------------------------------------------------------------- /src/Controller/ShopwareFilesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/ShopwareFilesController.php -------------------------------------------------------------------------------- /src/Controller/StateMachineController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Controller/StateMachineController.php -------------------------------------------------------------------------------- /src/DependencyInjection/CacheCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/DependencyInjection/CacheCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/DisableElasticsearchCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/DependencyInjection/DisableElasticsearchCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/FroshToolsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/DependencyInjection/FroshToolsExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/SymfonyConfigCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/DependencyInjection/SymfonyConfigCompilerPass.php -------------------------------------------------------------------------------- /src/FroshTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/FroshTools.php -------------------------------------------------------------------------------- /src/Resources/app/administration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/package-lock.json -------------------------------------------------------------------------------- /src/Resources/app/administration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/package.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/api/elasticsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/api/elasticsearch.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/api/frosh-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/api/frosh-tools.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/api/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/main.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/acl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/acl/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-cache/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-cache/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-cache/style.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-cache/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-cache/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-elasticsearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-elasticsearch/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-elasticsearch/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-elasticsearch/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-files/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-files/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-files/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-files/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-index/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-index/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-index/style.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-index/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-index/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-logs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-logs/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-logs/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-logs/style.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-logs/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-logs/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-queue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-queue/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-queue/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-queue/style.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-queue/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-queue/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/style.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-state-machines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-state-machines/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-state-machines/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-state-machines/style.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-state-machines/template.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-state-machines/template.html.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/page/index/frosh-tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/page/index/frosh-tools.scss -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/page/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/page/index/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/page/index/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/page/index/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/snippet/de-DE.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/module/frosh-tools/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/module/frosh-tools/snippet/en-GB.json -------------------------------------------------------------------------------- /src/Resources/app/administration/src/overrides/sw-data-grid-inline-edit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/overrides/sw-data-grid-inline-edit/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/overrides/sw-data-grid-inline-edit/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/overrides/sw-data-grid-inline-edit/template.twig -------------------------------------------------------------------------------- /src/Resources/app/administration/src/overrides/sw-version/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/overrides/sw-version/index.js -------------------------------------------------------------------------------- /src/Resources/app/administration/src/overrides/sw-version/template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/app/administration/src/overrides/sw-version/template.twig -------------------------------------------------------------------------------- /src/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Resources/config/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/config/plugin.png -------------------------------------------------------------------------------- /src/Resources/config/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/config/routes.xml -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Resources/store/de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/de.md -------------------------------------------------------------------------------- /src/Resources/store/de_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/de_manual.md -------------------------------------------------------------------------------- /src/Resources/store/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/en.md -------------------------------------------------------------------------------- /src/Resources/store/en_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/en_manual.md -------------------------------------------------------------------------------- /src/Resources/store/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/icon.png -------------------------------------------------------------------------------- /src/Resources/store/img-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/img-0.png -------------------------------------------------------------------------------- /src/Resources/store/img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/img-1.png -------------------------------------------------------------------------------- /src/Resources/store/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/img-2.png -------------------------------------------------------------------------------- /src/Resources/store/img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/img-3.png -------------------------------------------------------------------------------- /src/Resources/store/img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/store/img-4.png -------------------------------------------------------------------------------- /src/Resources/views/administration/mermaid/state-machine.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/views/administration/mermaid/state-machine.html.twig -------------------------------------------------------------------------------- /src/Resources/views/administration/plantuml/state-machine.puml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfShopware/FroshTools/HEAD/src/Resources/views/administration/plantuml/state-machine.puml.twig --------------------------------------------------------------------------------