v0.36.0
Bug Fix
Fixed an issue where installing packages by branch name would fail with Composer.
Branch versions (e.g., main, develop, feature/my-feature) were missing the required dev- prefix, causing composer require to fail with "Invalid version string". The install command shown in the UI was also incorrect.
Before:
composer require vendor/package:main
After:
composer require vendor/package:dev-main
Note: Run php artisan migrate after updating to fix existing branch versions in your database.
All releases