Fix composer validation for path repository
Some checks failed
Create Release Package / build-release (push) Failing after 1m0s

- Change version constraint from @dev to * for path repository
- Remove --strict from composer validate (path repos can't have proper versions)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-29 22:10:41 +01:00
parent bcd3481ea3
commit 0758caefc7
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ jobs:
echo "Building version: $VERSION" echo "Building version: $VERSION"
- name: Validate composer.json - name: Validate composer.json
run: composer validate --strict run: composer validate
- name: Install dependencies - name: Install dependencies
run: composer install --no-dev --optimize-autoloader --prefer-dist run: composer install --no-dev --optimize-autoloader --prefer-dist

View File

@@ -19,7 +19,7 @@
"require": { "require": {
"php": ">=8.3.0", "php": ">=8.3.0",
"twig/twig": "^3.0", "twig/twig": "^3.0",
"magdev/wc-licensed-product-client": "@dev" "magdev/wc-licensed-product-client": "*"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {