When updating dependencies for migration-related components or making schema changes, verify compatibility and ensure backward compatibility: 1. For dependency updates:
When updating dependencies for migration-related components or making schema changes, verify compatibility and ensure backward compatibility:
# After updating a migration dependency in composer.json
composer update utopia-php/migration && git add composer.lock
For example, when adding a new field like "expired": boolean
to an API schema, update all client models while maintaining compatibility with targets that don’t include this field yet.
Enter the URL of a public GitHub repository