Skip to content

Commit

Permalink
Fix composer required shopware versions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-memo-ict committed Jun 14, 2023
1 parent b908333 commit 72d2d35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
"infection/infection": "^0.26",
"nunomaduro/phpinsights": "^2.8",
"boxblinkracer/phpunuhi": "^1",
"shopware/core": "^6.4.1",
"shopware/administration": "^6.4.1",
"shopware/storefront": "^6.4.1"
"shopware/core": ">=6.4.1 <6.5",
"shopware/administration": ">=6.4.1 <6.5",
"shopware/storefront": ">=6.4.1 <6.5"
},
"scripts": {
"post-install-cmd": [
Expand All @@ -85,4 +85,4 @@
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}
}
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ release: ## Create a new release
@make zip

zip: ## Creates a new ZIP package
@php update-composer-require.php --shopware=^6.4.1 --env=prod --admin --storefront
@php update-composer-require.php --shopware=">=6.4.1 <6.5" --env=prod --admin --storefront
@cd .. && echo "Creating Zip file $(PLUGIN_NAME)-$(PLUGIN_VERSION).zip\n"
@cd .. && rm -rf $(PLUGIN_NAME)-$(PLUGIN_VERSION).zip
@cd .. && zip -qq -r -0 $(PLUGIN_NAME)-$(PLUGIN_VERSION).zip $(PLUGIN_NAME)/ -x@$(PLUGIN_NAME)/zip.exclude.lst
@php update-composer-require.php --shopware=^6.4.1 --env=dev --admin --storefront
@php update-composer-require.php --shopware=">=6.4.1 <6.5" --env=dev --admin --storefront

0 comments on commit 72d2d35

Please sign in to comment.