├── bin └── shopware-deployment-helper ├── composer.json └── src ├── Application.php ├── ApplicationOutput.php ├── Command ├── FastlySnippetDeployCommand.php ├── FastlySnippetListCommand.php ├── FastlySnippetRemoveCommand.php ├── OneTimeTaskListCommand.php ├── OneTimeTaskMarkCommand.php ├── OneTimeTaskUnmarkCommand.php └── RunCommand.php ├── Config ├── ConfigFactory.php ├── ProjectConfiguration.php ├── ProjectExtensionManagement.php ├── ProjectHooks.php ├── ProjectMaintenance.php └── ProjectStore.php ├── DependencyInjection └── MySQLFactory.php ├── Event └── PostDeploy.php ├── Helper ├── EnvironmentHelper.php └── ProcessHelper.php ├── Integration ├── ClearAlwaysCacheSubscriber.php ├── Fastly │ ├── FastlyAPIClient.php │ ├── FastlyContext.php │ └── FastlyServiceUpdater.php ├── PlatformSHSubscriber.php └── UsageDataConsentSubscriber.php ├── Resources └── config │ └── services.xml ├── Services ├── AccountService.php ├── AppHelper.php ├── AppLoader.php ├── DotenvLoader.php ├── HookExecutor.php ├── InstallationManager.php ├── OneTimeTasks.php ├── PluginHelper.php ├── PluginLoader.php ├── ShopwareState.php ├── SystemConfigHelper.php ├── UpgradeManager.php └── UrlHelper.php └── Struct └── RunConfiguration.php /bin/shopware-deployment-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/bin/shopware-deployment-helper -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/composer.json -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/ApplicationOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/ApplicationOutput.php -------------------------------------------------------------------------------- /src/Command/FastlySnippetDeployCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/FastlySnippetDeployCommand.php -------------------------------------------------------------------------------- /src/Command/FastlySnippetListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/FastlySnippetListCommand.php -------------------------------------------------------------------------------- /src/Command/FastlySnippetRemoveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/FastlySnippetRemoveCommand.php -------------------------------------------------------------------------------- /src/Command/OneTimeTaskListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/OneTimeTaskListCommand.php -------------------------------------------------------------------------------- /src/Command/OneTimeTaskMarkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/OneTimeTaskMarkCommand.php -------------------------------------------------------------------------------- /src/Command/OneTimeTaskUnmarkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/OneTimeTaskUnmarkCommand.php -------------------------------------------------------------------------------- /src/Command/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Command/RunCommand.php -------------------------------------------------------------------------------- /src/Config/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Config/ConfigFactory.php -------------------------------------------------------------------------------- /src/Config/ProjectConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Config/ProjectConfiguration.php -------------------------------------------------------------------------------- /src/Config/ProjectExtensionManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Config/ProjectExtensionManagement.php -------------------------------------------------------------------------------- /src/Config/ProjectHooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Config/ProjectHooks.php -------------------------------------------------------------------------------- /src/Config/ProjectMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Config/ProjectMaintenance.php -------------------------------------------------------------------------------- /src/Config/ProjectStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Config/ProjectStore.php -------------------------------------------------------------------------------- /src/DependencyInjection/MySQLFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/DependencyInjection/MySQLFactory.php -------------------------------------------------------------------------------- /src/Event/PostDeploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Event/PostDeploy.php -------------------------------------------------------------------------------- /src/Helper/EnvironmentHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Helper/EnvironmentHelper.php -------------------------------------------------------------------------------- /src/Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /src/Integration/ClearAlwaysCacheSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Integration/ClearAlwaysCacheSubscriber.php -------------------------------------------------------------------------------- /src/Integration/Fastly/FastlyAPIClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Integration/Fastly/FastlyAPIClient.php -------------------------------------------------------------------------------- /src/Integration/Fastly/FastlyContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Integration/Fastly/FastlyContext.php -------------------------------------------------------------------------------- /src/Integration/Fastly/FastlyServiceUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Integration/Fastly/FastlyServiceUpdater.php -------------------------------------------------------------------------------- /src/Integration/PlatformSHSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Integration/PlatformSHSubscriber.php -------------------------------------------------------------------------------- /src/Integration/UsageDataConsentSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Integration/UsageDataConsentSubscriber.php -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Services/AccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/AccountService.php -------------------------------------------------------------------------------- /src/Services/AppHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/AppHelper.php -------------------------------------------------------------------------------- /src/Services/AppLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/AppLoader.php -------------------------------------------------------------------------------- /src/Services/DotenvLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/DotenvLoader.php -------------------------------------------------------------------------------- /src/Services/HookExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/HookExecutor.php -------------------------------------------------------------------------------- /src/Services/InstallationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/InstallationManager.php -------------------------------------------------------------------------------- /src/Services/OneTimeTasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/OneTimeTasks.php -------------------------------------------------------------------------------- /src/Services/PluginHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/PluginHelper.php -------------------------------------------------------------------------------- /src/Services/PluginLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/PluginLoader.php -------------------------------------------------------------------------------- /src/Services/ShopwareState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/ShopwareState.php -------------------------------------------------------------------------------- /src/Services/SystemConfigHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/SystemConfigHelper.php -------------------------------------------------------------------------------- /src/Services/UpgradeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/UpgradeManager.php -------------------------------------------------------------------------------- /src/Services/UrlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Services/UrlHelper.php -------------------------------------------------------------------------------- /src/Struct/RunConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/deployment-helper/HEAD/src/Struct/RunConfiguration.php --------------------------------------------------------------------------------