├── .gitattributes ├── composer.json ├── infection.json5 └── src ├── AppRequest.php ├── ArgumentValueResolver └── ContextArgumentResolver.php ├── Controller ├── LifecycleController.php └── WebhookController.php ├── DependencyInjection ├── AppConfigurationFactory.php ├── Configuration.php └── ShopwareAppExtension.php ├── Entity ├── AbstractShop.php └── ShopRepositoryBridge.php ├── EventListener ├── BeforeRegistrationStartsListener.php └── ResponseSignerListener.php ├── Exception └── ShopURLIsNotReachableException.php ├── Resources └── config │ ├── routing │ ├── lifecycle.xml │ └── webhook.xml │ └── services.xml └── ShopwareAppBundle.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/.gitattributes -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/infection.json5 -------------------------------------------------------------------------------- /src/AppRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/AppRequest.php -------------------------------------------------------------------------------- /src/ArgumentValueResolver/ContextArgumentResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/ArgumentValueResolver/ContextArgumentResolver.php -------------------------------------------------------------------------------- /src/Controller/LifecycleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Controller/LifecycleController.php -------------------------------------------------------------------------------- /src/Controller/WebhookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Controller/WebhookController.php -------------------------------------------------------------------------------- /src/DependencyInjection/AppConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/DependencyInjection/AppConfigurationFactory.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/ShopwareAppExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/DependencyInjection/ShopwareAppExtension.php -------------------------------------------------------------------------------- /src/Entity/AbstractShop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Entity/AbstractShop.php -------------------------------------------------------------------------------- /src/Entity/ShopRepositoryBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Entity/ShopRepositoryBridge.php -------------------------------------------------------------------------------- /src/EventListener/BeforeRegistrationStartsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/EventListener/BeforeRegistrationStartsListener.php -------------------------------------------------------------------------------- /src/EventListener/ResponseSignerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/EventListener/ResponseSignerListener.php -------------------------------------------------------------------------------- /src/Exception/ShopURLIsNotReachableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Exception/ShopURLIsNotReachableException.php -------------------------------------------------------------------------------- /src/Resources/config/routing/lifecycle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Resources/config/routing/lifecycle.xml -------------------------------------------------------------------------------- /src/Resources/config/routing/webhook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Resources/config/routing/webhook.xml -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/ShopwareAppBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopware/app-bundle-symfony/HEAD/src/ShopwareAppBundle.php --------------------------------------------------------------------------------