From fa250821b5509739801e226783b60ddb84748676 Mon Sep 17 00:00:00 2001 From: Shyim Date: Mon, 22 Jan 2024 23:04:01 +0100 Subject: [PATCH] fix: add shopware 6.6 compatiblity (#65) * fix: add shopware 6.6 compatiblity * increase version * use same version for 6.5 and 6.6 * revert 8.2 syntax --- .shopware-extension.yml | 2 ++ CHANGELOG.md | 51 ----------------------------------------- composer.json | 6 ++--- 3 files changed, 5 insertions(+), 54 deletions(-) create mode 100644 .shopware-extension.yml delete mode 100644 CHANGELOG.md diff --git a/.shopware-extension.yml b/.shopware-extension.yml new file mode 100644 index 0000000..9cc6221 --- /dev/null +++ b/.shopware-extension.yml @@ -0,0 +1,2 @@ +changelog: + enabled: true diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index caf8ae3..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,51 +0,0 @@ -# 1.0.2 - -- Fixed compatibility with neno_hero_slider but is hopefully also helpful for other plugins - -# 1.0.1 - -- fix: formatting of values when they are nullable, fixes #52 by @shyim in https://github.com/FriendsOfShopware/FroshDevelopmentHelper/pull/55 --fix: customer entity loading, fixes #53 by @shyim in https://github.com/FriendsOfShopware/FroshDevelopmentHelper/pull/57 - -# 1.0.0 - -- Shopware 6.5 compatibility - -# 0.3.6 - -- Updated psysh package -- Block blacklist is now configureable using Symfony Config - -# 0.3.5 - -- Updated block blacklist - -# 0.3.4 - -- Updated block blacklist - -# 0.3.3 - -- Fixed problems with mail sending - -# 0.3.2 - -- Fixed serialization issue with profiler - -# 0.3.1 - -- Fixed installation using composer - -# 0.3.0 - -- Shopware 6.4 compatibility - - -# 0.2.2 - -- Fix autoloading problems of composer -- Fix kernel debug detection - -# 0.2.1 - -- Shopware 6.3 compability diff --git a/composer.json b/composer.json index 06fa343..d71d4f5 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "frosh/development-helper", - "version": "1.0.2", + "version": "1.0.3", "description": "Development Helper", "type": "shopware-platform-plugin", "license": "MIT", @@ -16,10 +16,10 @@ } }, "require": { - "shopware/core": "~6.5.0", + "shopware/core": "~6.5.0 || ~6.6.0", "nikic/php-parser": "*", "friendsofphp/php-cs-fixer": "*", - "psy/psysh": "^0.11.9" + "psy/psysh": "*" }, "extra": { "shopware-plugin-class": "Frosh\\DevelopmentHelper\\FroshDevelopmentHelper",