├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .run ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml └── Run Verifications.run.xml ├── CHANGELOG.md ├── README.md ├── doc └── images │ ├── component-autocomplete.png │ ├── component-extend.png │ ├── config-in-twig.png │ ├── create-plugin.png │ ├── extend-block1.png │ ├── extend-block2.png │ ├── extend-block3.png │ ├── property-autocomplete.png │ ├── strings.png │ ├── system-config.png │ └── theme-config.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── main ├── java │ └── de │ │ └── shyim │ │ └── shopware6 │ │ └── ui │ │ ├── app │ │ ├── NewAppDialog.form │ │ └── NewAppDialog.java │ │ ├── cms │ │ ├── NewCmsBlockDialog.form │ │ ├── NewCmsBlockDialog.java │ │ ├── NewCmsElementDialog.form │ │ └── NewCmsElementDialog.java │ │ ├── generic │ │ ├── GenericSimpleDialog.form │ │ └── GenericSimpleDialog.java │ │ ├── installer │ │ ├── ShopwareInstallerForm.form │ │ └── ShopwareInstallerForm.java │ │ ├── php │ │ ├── NewMigrationDialog │ │ │ ├── NewMigrationDialog.form │ │ │ └── NewMigrationDialog.java │ │ ├── NewPluginDialog.form │ │ ├── NewPluginDialog.java │ │ ├── NewScheduledTaskDialog.form │ │ └── NewScheduledTaskDialog.java │ │ ├── snippet │ │ ├── CreateSnippetsForm.form │ │ └── CreateSnippetsForm.java │ │ └── vue │ │ ├── NewComponentDialog.form │ │ ├── NewComponentDialog.java │ │ ├── NewModule.form │ │ └── NewModule.java ├── kotlin │ ├── de │ │ └── shyim │ │ │ └── shopware6 │ │ │ ├── Shopware.kt │ │ │ ├── action │ │ │ ├── context │ │ │ │ ├── InsertSnippetAction.kt │ │ │ │ └── admin │ │ │ │ │ ├── ExtendAdminComponentAction.kt │ │ │ │ │ └── ExtendAdminComponentMethodAction.kt │ │ │ ├── copy │ │ │ │ └── CopySnippet.kt │ │ │ ├── generator │ │ │ │ ├── ActionUtil.kt │ │ │ │ ├── NewConfigXmlAction.kt │ │ │ │ ├── app │ │ │ │ │ ├── AddCmsActions.kt │ │ │ │ │ ├── AddConfigFileAction.kt │ │ │ │ │ ├── AddCustomEntitiesAction.kt │ │ │ │ │ ├── NewAppAction.kt │ │ │ │ │ ├── NewAppConfig.kt │ │ │ │ │ ├── NewAppDialogWrapper.kt │ │ │ │ │ └── NewAppScriptAction.kt │ │ │ │ ├── cms │ │ │ │ │ ├── NewCmsBlockAction.kt │ │ │ │ │ ├── NewCmsBlockConfig.kt │ │ │ │ │ ├── NewCmsBlockDialogWrapper.kt │ │ │ │ │ ├── NewCmsElementAction.kt │ │ │ │ │ ├── NewCmsElementConfig.kt │ │ │ │ │ └── NewCmsElementDialogWrapper.kt │ │ │ │ ├── php │ │ │ │ │ ├── NewMigrationAction.kt │ │ │ │ │ ├── NewMigrationConfig.kt │ │ │ │ │ ├── NewMigrationDialogWrapper.kt │ │ │ │ │ ├── NewPluginAction.kt │ │ │ │ │ ├── NewPluginConfig.kt │ │ │ │ │ ├── NewPluginDialogWrapper.kt │ │ │ │ │ ├── NewScheduledTaskAction.kt │ │ │ │ │ ├── NewScheduledTaskConfig.kt │ │ │ │ │ └── NewScheduledTaskDialogWrapper.kt │ │ │ │ └── vue │ │ │ │ │ ├── NewComponentAction.kt │ │ │ │ │ ├── NewComponentConfig.kt │ │ │ │ │ ├── NewComponentDialogWrapper.kt │ │ │ │ │ ├── NewModuleAction.kt │ │ │ │ │ ├── NewModuleConfig.kt │ │ │ │ │ └── NewModuleDialogWrapper.kt │ │ │ ├── generic │ │ │ │ └── GenericSimpleDialogWrapper.kt │ │ │ └── project │ │ │ │ └── ConfigureShopwareProjectAction.kt │ │ │ ├── completion │ │ │ ├── JavaScriptCompletionProvider.kt │ │ │ ├── PhpCompletionProvider.kt │ │ │ ├── SnippetCompletionElement.kt │ │ │ └── TwigCompletionProvider.kt │ │ │ ├── folding │ │ │ └── AdminSnippetFolding.kt │ │ │ ├── hints │ │ │ └── PHPUnitInlineParameterHints.kt │ │ │ ├── index │ │ │ ├── AdminComponentIndex.kt │ │ │ ├── AdminComponentOverrideIndex.kt │ │ │ ├── AdminMixinIndex.kt │ │ │ ├── AdminModuleIndex.kt │ │ │ ├── AdminSnippetIndex.kt │ │ │ ├── EntityDefinitionIndex.kt │ │ │ ├── FeatureFlagIndex.kt │ │ │ ├── FrontendSnippetIndex.kt │ │ │ ├── ScriptHookFacadeIndex.kt │ │ │ ├── ScriptHookIndex.kt │ │ │ ├── ShopwareAppIndex.kt │ │ │ ├── ShopwareBundleIndex.kt │ │ │ ├── SystemConfigIndex.kt │ │ │ ├── ThemeConfigIndex.kt │ │ │ ├── TwigBlockDeprecationIndex.kt │ │ │ ├── TwigBlockHashIndex.kt │ │ │ ├── dict │ │ │ │ ├── AdminComponent.kt │ │ │ │ ├── AdminComponentOverride.kt │ │ │ │ ├── AdminMixin.kt │ │ │ │ ├── AdminModule.kt │ │ │ │ ├── AdminModuleRoute.kt │ │ │ │ ├── EntityDefinition.kt │ │ │ │ ├── EntityDefinitionField.kt │ │ │ │ ├── FeatureFlag.kt │ │ │ │ ├── ScriptHook.kt │ │ │ │ ├── ScriptHookFacade.kt │ │ │ │ ├── ShopwareApp.kt │ │ │ │ ├── ShopwareBundle.kt │ │ │ │ ├── ShopwareExtension.kt │ │ │ │ ├── SnippetFile.kt │ │ │ │ ├── SystemConfig.kt │ │ │ │ ├── ThemeConfig.kt │ │ │ │ ├── TwigBlockHash.kt │ │ │ │ └── TwigDeprecation.kt │ │ │ └── externalizer │ │ │ │ └── ObjectStreamDataExternalizer.kt │ │ │ ├── inspection │ │ │ ├── AdministrationSnippetMissing.kt │ │ │ ├── ClassUsedInsteadOfAbstraction.kt │ │ │ ├── ScriptHookPermissionMissing.kt │ │ │ ├── ScriptHookServiceNotAvailable.kt │ │ │ ├── php │ │ │ │ └── CriteriaIdMisused.kt │ │ │ ├── quickfix │ │ │ │ ├── admin │ │ │ │ │ ├── AddAdministrationSnippetFix.kt │ │ │ │ │ ├── AddAdministrationSnippetFixConfig.kt │ │ │ │ │ └── AddAdministrationSnippetFixFormWrapper.kt │ │ │ │ ├── php │ │ │ │ │ └── CriteriaIdMisusedFix.kt │ │ │ │ ├── twig │ │ │ │ │ └── AddMissingTwigVersioningCommentFix.kt │ │ │ │ └── vue │ │ │ │ │ └── VueTemplateSlotMigrationFix.kt │ │ │ ├── store │ │ │ │ └── composer │ │ │ │ │ ├── ExtensionComposerInspection.kt │ │ │ │ │ ├── MissingComposerExtraDescription.kt │ │ │ │ │ ├── MissingComposerExtraLabel.kt │ │ │ │ │ ├── MissingComposerExtraManufacturerLink.kt │ │ │ │ │ ├── MissingComposerExtraSupportLink.kt │ │ │ │ │ └── MissingComposerRequire.kt │ │ │ ├── twig │ │ │ │ ├── TwigBlockDeprecated.kt │ │ │ │ ├── TwigBlockHashChanged.kt │ │ │ │ └── TwigBlockHashMissing.kt │ │ │ └── vue │ │ │ │ └── VueTemplateSlotMigration.kt │ │ │ ├── installer │ │ │ ├── ShopwareApiUtil.kt │ │ │ ├── ShopwareProjectGenerator.kt │ │ │ ├── ShopwareProjectGeneratorPeer.kt │ │ │ ├── ShopwareProjectSettings.kt │ │ │ ├── ShopwareTemplatesFactory.kt │ │ │ └── ShopwareVersion.kt │ │ │ ├── intentions │ │ │ ├── AddTwigVersioningIntention.kt │ │ │ ├── CreateEventListenerIntention.kt │ │ │ ├── ExtendAdminComponentIntention.kt │ │ │ ├── ExtendAdminComponentMethodIntention.kt │ │ │ ├── ExtendTwigBlockIntention.kt │ │ │ └── ShowTwigBlockDifference.kt │ │ │ ├── marker │ │ │ └── js │ │ │ │ └── AdminComponentMarker.kt │ │ │ ├── navigation │ │ │ ├── AdminComponentGoToDeclareHandler.kt │ │ │ ├── AdminMixinGoToDeclareHandler.kt │ │ │ ├── AdminModuleGoToDeclareHandler.kt │ │ │ ├── AdminSnippetGoToDeclareHandler.kt │ │ │ ├── EntityDefinitionGoToDeclareHandler.kt │ │ │ ├── FeatureFlagGoToDeclareHandler.kt │ │ │ ├── NavigationItemEx.kt │ │ │ ├── PHPSnippetGoToDeclareHandler.kt │ │ │ ├── SystemConfigGoToDeclareHandler.kt │ │ │ ├── ThemeConfigGoToDeclareHandler.kt │ │ │ └── symbol │ │ │ │ └── AdminComponentSymbolContributor.kt │ │ │ ├── symfonyplugin │ │ │ ├── RouteGoToDeclareHandler.kt │ │ │ ├── ShopwareTranslationProvider.kt │ │ │ ├── SymfonyTwigCompletionProvider.kt │ │ │ └── TwigFileUsageProvider.kt │ │ │ ├── templates │ │ │ └── ShopwareTemplates.kt │ │ │ ├── util │ │ │ ├── AdminMixinUtil.kt │ │ │ ├── AdminModuleUtil.kt │ │ │ ├── AdminSnippetUtil.kt │ │ │ ├── EntityDefinitionUtil.kt │ │ │ ├── FeatureFlagUtil.kt │ │ │ ├── FrontendSnippetUtil.kt │ │ │ ├── JavaScriptPattern.kt │ │ │ ├── PHPPattern.kt │ │ │ ├── PsiUtil.kt │ │ │ ├── ScriptHookUtil.kt │ │ │ ├── ShopwareAppUtil.kt │ │ │ ├── ShopwareBundleUtil.kt │ │ │ ├── ShopwareExtensionUtil.kt │ │ │ ├── SnippetUtil.kt │ │ │ ├── StringUtil.kt │ │ │ ├── SystemConfigUtil.kt │ │ │ ├── ThemeConfigUtil.kt │ │ │ ├── TwigPattern.kt │ │ │ └── TwigUtil.kt │ │ │ ├── vcs │ │ │ └── GitlabCommitMessageProvider.kt │ │ │ └── xml │ │ │ ├── AdminComponentAttributeDescriptor.kt │ │ │ ├── AdminComponentProvider.kt │ │ │ └── AdminComponentTagDescriptor.kt │ └── icons │ │ └── ShopwareToolBoxIcons.kt └── resources │ ├── META-INF │ ├── de.shyim.shopware6.symfony.xml │ ├── plugin.xml │ └── pluginIcon.svg │ ├── fileTemplates │ └── j2ee │ │ ├── app │ │ ├── Shopware App CMS.xml.ft │ │ ├── Shopware App custom entities.xml.ft │ │ ├── Shopware App manifest.xml.ft │ │ └── Shopware App script.twig.ft │ │ ├── cms │ │ ├── block │ │ │ ├── Shopware Block Component Index.js.ft │ │ │ ├── Shopware Block Component Template.twig.ft │ │ │ ├── Shopware Block Index.js.ft │ │ │ ├── Shopware Block Preview Index.js.ft │ │ │ ├── Shopware Block Preview SCSS.scss.ft │ │ │ ├── Shopware Block Preview Template.twig.ft │ │ │ └── Shopware Block Storefront.twig.ft │ │ └── element │ │ │ ├── Shopware Element Component Index.js.ft │ │ │ ├── Shopware Element Component SCSS.scss.ft │ │ │ ├── Shopware Element Component Template.twig.ft │ │ │ ├── Shopware Element Config Index.js.ft │ │ │ ├── Shopware Element Config SCSS.scss.ft │ │ │ ├── Shopware Element Config Template.twig.ft │ │ │ ├── Shopware Element Index.js.ft │ │ │ ├── Shopware Element Preview Index.js.ft │ │ │ ├── Shopware Element Preview SCSS.scss.ft │ │ │ ├── Shopware Element Preview Template.twig.ft │ │ │ └── Shopware Element Storefront.twig.ft │ │ ├── contribution │ │ └── Shopware CHANGELOG.md.ft │ │ ├── php │ │ ├── Shopware PHP Event Listener.php.ft │ │ ├── Shopware PHP Migration.php.ft │ │ ├── Shopware PHP Scheduled Task.php.ft │ │ └── Shopware PHP Scheduled TaskHandler.php.ft │ │ ├── plugin │ │ ├── Shopware Plugin Bootstrap.php.ft │ │ ├── Shopware Plugin Changelog.md.ft │ │ ├── Shopware Plugin composer.json.ft │ │ ├── Shopware Plugin config.xml.ft │ │ ├── Shopware Plugin routes.yaml.ft │ │ └── Shopware Plugin services.yaml.ft │ │ └── vue │ │ ├── Shopware Vue Component Extend.js.ft │ │ ├── Shopware Vue Component Override.js.ft │ │ ├── Shopware Vue Component SCSS.scss.ft │ │ ├── Shopware Vue Component Twig.html.twig.ft │ │ ├── Shopware Vue Component.js.ft │ │ ├── Shopware Vue Module Snippet.json.ft │ │ └── Shopware Vue Module.js.ft │ ├── icons │ └── shopware.svg │ ├── inspectionDescriptions │ ├── Shopware6AbstractClassInspection.html │ ├── Shopware6AdministrationSnippetMissing.html │ ├── Shopware6AdministrationVueTemplateSlotMigration.html │ ├── Shopware6AppScriptPermissionMissing.html │ ├── Shopware6AppScriptServiceNotAvailable.html │ ├── Shopware6CriteriaIdMisused.html │ ├── Shopware6PluginStoreMissingExtraDescription.html │ ├── Shopware6PluginStoreMissingExtraLabel.html │ ├── Shopware6PluginStoreMissingManufacturerLink.html │ ├── Shopware6PluginStoreMissingRequire.html │ ├── Shopware6PluginStoreMissingSupportLink.html │ ├── Shopware6TwigBlockCommentMissing.html │ ├── Shopware6TwigBlockDeprecated.html │ └── Shopware6TwigHashDifference.html │ ├── intentionDescriptions │ ├── AddTwigVersioningIntention │ │ ├── after.as.template │ │ ├── before.as.template │ │ └── description.html │ ├── CreateEventListenerIntention │ │ ├── after.as.template │ │ ├── before.as.template │ │ └── description.html │ ├── ExtendAdminComponentIntention │ │ ├── after.as.template │ │ ├── before.as.template │ │ └── description.html │ ├── ExtendAdminComponentMethodIntention │ │ ├── after.as.template │ │ ├── before.as.template │ │ └── description.html │ ├── ExtendTwigBlockIntention │ │ ├── after.as.template │ │ ├── before.as.template │ │ └── description.html │ └── ShowTwigBlockDifference │ │ ├── after.as.template │ │ ├── before.as.template │ │ └── description.html │ ├── liveTemplates │ ├── Shopware 6 Config_xml.xml │ ├── Shopware 6 General.xml │ └── Shopware 6 PHP.xml │ └── messages │ └── Shopware.properties └── test ├── kotlin └── de │ └── shyim │ └── shopware6 │ └── test │ └── index │ ├── AdminComponentIndexTest.kt │ ├── AdminComponentOverrideIndexTest.kt │ ├── AdminModuleIndexTest.kt │ ├── AdminSnippetIndexTest.kt │ ├── EntityDefinitionIndexTest.kt │ ├── SystemConfigIndexTest.kt │ └── TwigBlockDeprecationIndexTest.kt └── testData └── index ├── AdminComponentIndex ├── button.js └── extended-button.js ├── AdminComponentOverrideIndex └── button.js ├── AdminModuleIndex └── module │ └── sw-product │ └── index.js ├── AdminSnippetIndex ├── other │ └── en-GB.json └── snippet │ ├── de-DE.json │ └── en-GB.json ├── EntityDefinitionIndexTest ├── AppShippingMethodDefinition.php └── MailArchiveDefinition.php ├── SystemConfigIndexTest ├── composer.json └── src │ └── Resources │ └── config │ └── common.xml └── TwigBlockDeprecationIndexTest └── MyApp └── Resources └── views └── start-page └── index.html.twig /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | .qodana 4 | build 5 | .intellijPlatform 6 | /.kotlin -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Verifications.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/.run/Run Verifications.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/component-autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/component-autocomplete.png -------------------------------------------------------------------------------- /doc/images/component-extend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/component-extend.png -------------------------------------------------------------------------------- /doc/images/config-in-twig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/config-in-twig.png -------------------------------------------------------------------------------- /doc/images/create-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/create-plugin.png -------------------------------------------------------------------------------- /doc/images/extend-block1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/extend-block1.png -------------------------------------------------------------------------------- /doc/images/extend-block2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/extend-block2.png -------------------------------------------------------------------------------- /doc/images/extend-block3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/extend-block3.png -------------------------------------------------------------------------------- /doc/images/property-autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/property-autocomplete.png -------------------------------------------------------------------------------- /doc/images/strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/strings.png -------------------------------------------------------------------------------- /doc/images/system-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/system-config.png -------------------------------------------------------------------------------- /doc/images/theme-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/doc/images/theme-config.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/app/NewAppDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/app/NewAppDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/app/NewAppDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/app/NewAppDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/cms/NewCmsBlockDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/cms/NewCmsBlockDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/cms/NewCmsBlockDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/cms/NewCmsBlockDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/cms/NewCmsElementDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/cms/NewCmsElementDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/cms/NewCmsElementDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/cms/NewCmsElementDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/generic/GenericSimpleDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/generic/GenericSimpleDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/generic/GenericSimpleDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/generic/GenericSimpleDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/installer/ShopwareInstallerForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/installer/ShopwareInstallerForm.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/installer/ShopwareInstallerForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/installer/ShopwareInstallerForm.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/php/NewMigrationDialog/NewMigrationDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/php/NewMigrationDialog/NewMigrationDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/php/NewMigrationDialog/NewMigrationDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/php/NewMigrationDialog/NewMigrationDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/php/NewPluginDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/php/NewPluginDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/php/NewPluginDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/php/NewPluginDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/php/NewScheduledTaskDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/php/NewScheduledTaskDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/php/NewScheduledTaskDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/php/NewScheduledTaskDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/snippet/CreateSnippetsForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/snippet/CreateSnippetsForm.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/snippet/CreateSnippetsForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/snippet/CreateSnippetsForm.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/vue/NewComponentDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/vue/NewComponentDialog.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/vue/NewComponentDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/vue/NewComponentDialog.java -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/vue/NewModule.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/vue/NewModule.form -------------------------------------------------------------------------------- /src/main/java/de/shyim/shopware6/ui/vue/NewModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/java/de/shyim/shopware6/ui/vue/NewModule.java -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/Shopware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/Shopware.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/context/InsertSnippetAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/context/InsertSnippetAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/context/admin/ExtendAdminComponentAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/context/admin/ExtendAdminComponentAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/context/admin/ExtendAdminComponentMethodAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/context/admin/ExtendAdminComponentMethodAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/copy/CopySnippet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/copy/CopySnippet.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/ActionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/ActionUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/NewConfigXmlAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/NewConfigXmlAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/AddCmsActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/AddCmsActions.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/AddConfigFileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/AddConfigFileAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/AddCustomEntitiesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/AddCustomEntitiesAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppScriptAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/app/NewAppScriptAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsBlockAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsBlockAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsBlockConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsBlockConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsBlockDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsBlockDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsElementAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsElementAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsElementConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsElementConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsElementDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/cms/NewCmsElementDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewMigrationAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewMigrationAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewMigrationConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewMigrationConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewMigrationDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewMigrationDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewPluginAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewPluginAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewPluginConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewPluginConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewPluginDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewPluginDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewScheduledTaskAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewScheduledTaskAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewScheduledTaskConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewScheduledTaskConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/php/NewScheduledTaskDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/php/NewScheduledTaskDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewComponentAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewComponentAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewComponentConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewComponentConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewComponentDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewComponentDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewModuleAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewModuleAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewModuleConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewModuleConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewModuleDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generator/vue/NewModuleDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/generic/GenericSimpleDialogWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/generic/GenericSimpleDialogWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/action/project/ConfigureShopwareProjectAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/action/project/ConfigureShopwareProjectAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/completion/JavaScriptCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/completion/JavaScriptCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/completion/PhpCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/completion/PhpCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/completion/SnippetCompletionElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/completion/SnippetCompletionElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/completion/TwigCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/completion/TwigCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/folding/AdminSnippetFolding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/folding/AdminSnippetFolding.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/hints/PHPUnitInlineParameterHints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/hints/PHPUnitInlineParameterHints.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/AdminComponentIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/AdminComponentIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/AdminComponentOverrideIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/AdminComponentOverrideIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/AdminMixinIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/AdminMixinIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/AdminModuleIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/AdminModuleIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/AdminSnippetIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/AdminSnippetIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/EntityDefinitionIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/EntityDefinitionIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/FeatureFlagIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/FeatureFlagIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/FrontendSnippetIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/FrontendSnippetIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/ScriptHookFacadeIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/ScriptHookFacadeIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/ScriptHookIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/ScriptHookIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/ShopwareAppIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/ShopwareAppIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/ShopwareBundleIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/ShopwareBundleIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/SystemConfigIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/SystemConfigIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/ThemeConfigIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/ThemeConfigIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/TwigBlockDeprecationIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/TwigBlockDeprecationIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/TwigBlockHashIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/TwigBlockHashIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/AdminComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/AdminComponent.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/AdminComponentOverride.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/AdminComponentOverride.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/AdminMixin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/AdminMixin.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/AdminModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/AdminModule.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/AdminModuleRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/AdminModuleRoute.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/EntityDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/EntityDefinition.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/EntityDefinitionField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/EntityDefinitionField.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/FeatureFlag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/FeatureFlag.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/ScriptHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/ScriptHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/ScriptHookFacade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/ScriptHookFacade.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/ShopwareApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/ShopwareApp.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/ShopwareBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/ShopwareBundle.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/ShopwareExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/ShopwareExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/SnippetFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/SnippetFile.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/SystemConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/SystemConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/ThemeConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/ThemeConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/TwigBlockHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/TwigBlockHash.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/dict/TwigDeprecation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/dict/TwigDeprecation.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/index/externalizer/ObjectStreamDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/index/externalizer/ObjectStreamDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/AdministrationSnippetMissing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/AdministrationSnippetMissing.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/ClassUsedInsteadOfAbstraction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/ClassUsedInsteadOfAbstraction.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/ScriptHookPermissionMissing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/ScriptHookPermissionMissing.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/ScriptHookServiceNotAvailable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/ScriptHookServiceNotAvailable.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/php/CriteriaIdMisused.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/php/CriteriaIdMisused.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/quickfix/admin/AddAdministrationSnippetFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/quickfix/admin/AddAdministrationSnippetFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/quickfix/admin/AddAdministrationSnippetFixConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/quickfix/admin/AddAdministrationSnippetFixConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/quickfix/admin/AddAdministrationSnippetFixFormWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/quickfix/admin/AddAdministrationSnippetFixFormWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/quickfix/php/CriteriaIdMisusedFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/quickfix/php/CriteriaIdMisusedFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/quickfix/twig/AddMissingTwigVersioningCommentFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/quickfix/twig/AddMissingTwigVersioningCommentFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/quickfix/vue/VueTemplateSlotMigrationFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/quickfix/vue/VueTemplateSlotMigrationFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/store/composer/ExtensionComposerInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/store/composer/ExtensionComposerInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraDescription.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraLabel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraLabel.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraManufacturerLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraManufacturerLink.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraSupportLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerExtraSupportLink.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerRequire.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/store/composer/MissingComposerRequire.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/twig/TwigBlockDeprecated.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/twig/TwigBlockDeprecated.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/twig/TwigBlockHashChanged.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/twig/TwigBlockHashChanged.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/twig/TwigBlockHashMissing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/twig/TwigBlockHashMissing.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/inspection/vue/VueTemplateSlotMigration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/inspection/vue/VueTemplateSlotMigration.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/installer/ShopwareApiUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/installer/ShopwareApiUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/installer/ShopwareProjectGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/installer/ShopwareProjectGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/installer/ShopwareProjectGeneratorPeer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/installer/ShopwareProjectGeneratorPeer.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/installer/ShopwareProjectSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/installer/ShopwareProjectSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/installer/ShopwareTemplatesFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/installer/ShopwareTemplatesFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/installer/ShopwareVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/installer/ShopwareVersion.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/intentions/AddTwigVersioningIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/intentions/AddTwigVersioningIntention.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/intentions/CreateEventListenerIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/intentions/CreateEventListenerIntention.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/intentions/ExtendAdminComponentIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/intentions/ExtendAdminComponentIntention.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/intentions/ExtendAdminComponentMethodIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/intentions/ExtendAdminComponentMethodIntention.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/intentions/ExtendTwigBlockIntention.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/intentions/ExtendTwigBlockIntention.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/intentions/ShowTwigBlockDifference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/intentions/ShowTwigBlockDifference.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/marker/js/AdminComponentMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/marker/js/AdminComponentMarker.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/AdminComponentGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/AdminComponentGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/AdminMixinGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/AdminMixinGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/AdminModuleGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/AdminModuleGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/AdminSnippetGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/AdminSnippetGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/EntityDefinitionGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/EntityDefinitionGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/FeatureFlagGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/FeatureFlagGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/NavigationItemEx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/NavigationItemEx.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/PHPSnippetGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/PHPSnippetGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/SystemConfigGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/SystemConfigGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/ThemeConfigGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/ThemeConfigGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/navigation/symbol/AdminComponentSymbolContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/navigation/symbol/AdminComponentSymbolContributor.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/symfonyplugin/RouteGoToDeclareHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/symfonyplugin/RouteGoToDeclareHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/symfonyplugin/ShopwareTranslationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/symfonyplugin/ShopwareTranslationProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/symfonyplugin/SymfonyTwigCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/symfonyplugin/SymfonyTwigCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/symfonyplugin/TwigFileUsageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/symfonyplugin/TwigFileUsageProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/templates/ShopwareTemplates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/templates/ShopwareTemplates.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/AdminMixinUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/AdminMixinUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/AdminModuleUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/AdminModuleUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/AdminSnippetUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/AdminSnippetUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/EntityDefinitionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/EntityDefinitionUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/FeatureFlagUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/FeatureFlagUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/FrontendSnippetUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/FrontendSnippetUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/JavaScriptPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/JavaScriptPattern.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/PHPPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/PHPPattern.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/PsiUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/PsiUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/ScriptHookUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/ScriptHookUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/ShopwareAppUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/ShopwareAppUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/ShopwareBundleUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/ShopwareBundleUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/ShopwareExtensionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/ShopwareExtensionUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/SnippetUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/SnippetUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/StringUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/StringUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/SystemConfigUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/SystemConfigUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/ThemeConfigUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/ThemeConfigUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/TwigPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/TwigPattern.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/util/TwigUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/util/TwigUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/vcs/GitlabCommitMessageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/vcs/GitlabCommitMessageProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/xml/AdminComponentAttributeDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/xml/AdminComponentAttributeDescriptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/xml/AdminComponentProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/xml/AdminComponentProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/de/shyim/shopware6/xml/AdminComponentTagDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/de/shyim/shopware6/xml/AdminComponentTagDescriptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/icons/ShopwareToolBoxIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/kotlin/icons/ShopwareToolBoxIcons.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/de.shyim.shopware6.symfony.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/META-INF/de.shyim.shopware6.symfony.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/app/Shopware App CMS.xml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/app/Shopware App CMS.xml.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/app/Shopware App custom entities.xml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/app/Shopware App custom entities.xml.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/app/Shopware App manifest.xml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/app/Shopware App manifest.xml.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/app/Shopware App script.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/app/Shopware App script.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Component Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Component Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Component Template.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Component Template.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Preview Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Preview Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Preview SCSS.scss.ft: -------------------------------------------------------------------------------- 1 | .sw-cms-preview-${NAME} { 2 | padding: 15px; 3 | } -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Preview Template.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Preview Template.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Storefront.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/block/Shopware Block Storefront.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Component Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Component Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Component SCSS.scss.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Component SCSS.scss.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Component Template.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Component Template.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Config Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Config Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Config SCSS.scss.ft: -------------------------------------------------------------------------------- 1 | @import "~scss/variables"; 2 | 3 | .sw-cms-el-config-${NAME} { 4 | width: 100%; 5 | } -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Config Template.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Config Template.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Preview Index.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Preview Index.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Preview SCSS.scss.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Preview SCSS.scss.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Preview Template.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Preview Template.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Storefront.twig.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/cms/element/Shopware Element Storefront.twig.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/contribution/Shopware CHANGELOG.md.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/contribution/Shopware CHANGELOG.md.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/php/Shopware PHP Event Listener.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/php/Shopware PHP Event Listener.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/php/Shopware PHP Migration.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/php/Shopware PHP Migration.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/php/Shopware PHP Scheduled Task.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/php/Shopware PHP Scheduled Task.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/php/Shopware PHP Scheduled TaskHandler.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/php/Shopware PHP Scheduled TaskHandler.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin Bootstrap.php.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin Bootstrap.php.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin Changelog.md.ft: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | 3 | * First release in Store -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin composer.json.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin composer.json.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin config.xml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin config.xml.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin routes.yaml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin routes.yaml.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin services.yaml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/plugin/Shopware Plugin services.yaml.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component Extend.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component Extend.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component Override.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component Override.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component SCSS.scss.ft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component Twig.html.twig.ft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Component.js.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Module Snippet.json.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Module Snippet.json.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Module.js.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/fileTemplates/j2ee/vue/Shopware Vue Module.js.ft -------------------------------------------------------------------------------- /src/main/resources/icons/shopware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/icons/shopware.svg -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6AbstractClassInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6AbstractClassInspection.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6AdministrationSnippetMissing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6AdministrationSnippetMissing.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6AdministrationVueTemplateSlotMigration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6AdministrationVueTemplateSlotMigration.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6AppScriptPermissionMissing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6AppScriptPermissionMissing.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6AppScriptServiceNotAvailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6AppScriptServiceNotAvailable.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6CriteriaIdMisused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6CriteriaIdMisused.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingExtraDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingExtraDescription.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingExtraLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingExtraLabel.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingManufacturerLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingManufacturerLink.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingRequire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingRequire.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingSupportLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6PluginStoreMissingSupportLink.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6TwigBlockCommentMissing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6TwigBlockCommentMissing.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6TwigBlockDeprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6TwigBlockDeprecated.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Shopware6TwigHashDifference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/inspectionDescriptions/Shopware6TwigHashDifference.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/AddTwigVersioningIntention/after.as.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/AddTwigVersioningIntention/after.as.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/AddTwigVersioningIntention/before.as.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/AddTwigVersioningIntention/before.as.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/AddTwigVersioningIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/AddTwigVersioningIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/CreateEventListenerIntention/after.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/CreateEventListenerIntention/before.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/CreateEventListenerIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/CreateEventListenerIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendAdminComponentIntention/after.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendAdminComponentIntention/before.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendAdminComponentIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/ExtendAdminComponentIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendAdminComponentMethodIntention/after.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendAdminComponentMethodIntention/before.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendAdminComponentMethodIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/ExtendAdminComponentMethodIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendTwigBlockIntention/after.as.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/ExtendTwigBlockIntention/after.as.template -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendTwigBlockIntention/before.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ExtendTwigBlockIntention/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/ExtendTwigBlockIntention/description.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ShowTwigBlockDifference/after.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ShowTwigBlockDifference/before.as.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/ShowTwigBlockDifference/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/intentionDescriptions/ShowTwigBlockDifference/description.html -------------------------------------------------------------------------------- /src/main/resources/liveTemplates/Shopware 6 Config_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/liveTemplates/Shopware 6 Config_xml.xml -------------------------------------------------------------------------------- /src/main/resources/liveTemplates/Shopware 6 General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/liveTemplates/Shopware 6 General.xml -------------------------------------------------------------------------------- /src/main/resources/liveTemplates/Shopware 6 PHP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/liveTemplates/Shopware 6 PHP.xml -------------------------------------------------------------------------------- /src/main/resources/messages/Shopware.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/main/resources/messages/Shopware.properties -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/AdminComponentIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/AdminComponentIndexTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/AdminComponentOverrideIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/AdminComponentOverrideIndexTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/AdminModuleIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/AdminModuleIndexTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/AdminSnippetIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/AdminSnippetIndexTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/EntityDefinitionIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/EntityDefinitionIndexTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/SystemConfigIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/SystemConfigIndexTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/shyim/shopware6/test/index/TwigBlockDeprecationIndexTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/kotlin/de/shyim/shopware6/test/index/TwigBlockDeprecationIndexTest.kt -------------------------------------------------------------------------------- /src/test/testData/index/AdminComponentIndex/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminComponentIndex/button.js -------------------------------------------------------------------------------- /src/test/testData/index/AdminComponentIndex/extended-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminComponentIndex/extended-button.js -------------------------------------------------------------------------------- /src/test/testData/index/AdminComponentOverrideIndex/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminComponentOverrideIndex/button.js -------------------------------------------------------------------------------- /src/test/testData/index/AdminModuleIndex/module/sw-product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminModuleIndex/module/sw-product/index.js -------------------------------------------------------------------------------- /src/test/testData/index/AdminSnippetIndex/other/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminSnippetIndex/other/en-GB.json -------------------------------------------------------------------------------- /src/test/testData/index/AdminSnippetIndex/snippet/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminSnippetIndex/snippet/de-DE.json -------------------------------------------------------------------------------- /src/test/testData/index/AdminSnippetIndex/snippet/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/AdminSnippetIndex/snippet/en-GB.json -------------------------------------------------------------------------------- /src/test/testData/index/EntityDefinitionIndexTest/AppShippingMethodDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/EntityDefinitionIndexTest/AppShippingMethodDefinition.php -------------------------------------------------------------------------------- /src/test/testData/index/EntityDefinitionIndexTest/MailArchiveDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/EntityDefinitionIndexTest/MailArchiveDefinition.php -------------------------------------------------------------------------------- /src/test/testData/index/SystemConfigIndexTest/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/SystemConfigIndexTest/composer.json -------------------------------------------------------------------------------- /src/test/testData/index/SystemConfigIndexTest/src/Resources/config/common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/SystemConfigIndexTest/src/Resources/config/common.xml -------------------------------------------------------------------------------- /src/test/testData/index/TwigBlockDeprecationIndexTest/MyApp/Resources/views/start-page/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shopwareLabs/shopware6-phpstorm-plugin/HEAD/src/test/testData/index/TwigBlockDeprecationIndexTest/MyApp/Resources/views/start-page/index.html.twig --------------------------------------------------------------------------------