From 48fb36be676c4685bfa3aaf05f46b72f17f8fbdd Mon Sep 17 00:00:00 2001 From: ioanok Date: Fri, 1 Mar 2024 19:09:41 +0200 Subject: [PATCH] feat: Set compatibility with Shopware 6.6 (#3) --- composer.json | 2 +- phpstan-bootstrap.php | 46 ------------------------------------------- 2 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 phpstan-bootstrap.php diff --git a/composer.json b/composer.json index 3effad3..0f0cc29 100644 --- a/composer.json +++ b/composer.json @@ -3,6 +3,6 @@ "license": "MIT", "description": "A meta package providing recipes for shopware code quality tools", "require": { - "shopware/core": "~6.5.0" + "shopware/core": "~6.6.0" } } diff --git a/phpstan-bootstrap.php b/phpstan-bootstrap.php deleted file mode 100644 index 6647fc7..0000000 --- a/phpstan-bootstrap.php +++ /dev/null @@ -1,46 +0,0 @@ -usePutenv()->bootEnv(TEST_PROJECT_DIR . '/.env'); -} - -$pluginLoader = new ComposerPluginLoader($classLoader); -$kernel = new StaticAnalyzeKernel('phpstan_dev', true, $pluginLoader, 'phpstan-test-cache-id'); -$kernel->boot(); - -return $classLoader; \ No newline at end of file