Use renamed Utopia HTTP package#231
Conversation
Greptile SummaryThis PR replaces the deprecated
Confidence Score: 5/5Safe to merge — this is a mechanical package rename with no behavioral change; the resolved version and namespace are identical. Both package names resolve to the exact same repository at the same version, and no PHP source files reference the old package name. The rename is internally consistent across composer.json and composer.lock, and there are no remaining uses of utopia-php/framework anywhere in the repo. No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "Use renamed Utopia HTTP package" | Re-trigger Greptile |
What does this PR do?
Updates the Composer dependency from
utopia-php/frameworkto the renamedutopia-php/httppackage.Both package names currently resolve to the same
utopia-php/httprepository and version, but downstream projects that also requireutopia-php/httpcan install both packages at once. Since both packages autoload the sameUtopia\\classes, Composer emits ambiguous class resolution warnings while generating optimized autoload files.Using the current package name prevents duplicate installs and avoids those warnings for consumers.
Test Plan
composer --working-dir=.worktrees/executor dump-autoload --optimize --no-interactioncomposer --working-dir=.worktrees/executor format:check --no-interactioncomposer --working-dir=.worktrees/executor analyze --no-interactioncomposer --working-dir=.worktrees/executor test:unit --no-interaction