├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── docs ├── .gitignore ├── LICENSE.md ├── README.md ├── bin │ ├── build-docs.sh │ └── generate-reference.sh └── en │ ├── Makefile │ ├── _static │ └── .gitkeep │ ├── conf.py │ ├── domain-model.txt │ ├── domain-model │ ├── glossary.txt │ ├── migration.txt │ └── timeline.txt │ ├── examples.txt │ ├── examples │ └── simple-usage.txt │ ├── getting-started.txt │ ├── implementations.txt │ ├── index.txt │ ├── make.bat │ ├── ref │ └── Baleen │ │ └── Migrations │ │ ├── Event │ │ ├── CanDispatchEventsTrait.txt │ │ ├── EmitterInterface.txt │ │ ├── EventInterface.txt │ │ ├── HasEmitterTrait.txt │ │ ├── Timeline │ │ │ ├── CollectionEvent.txt │ │ │ ├── MigrationEvent.txt │ │ │ ├── Progress.txt │ │ │ └── index.txt │ │ └── index.txt │ │ ├── Exception │ │ ├── BaleenException.txt │ │ ├── CollectionException.txt │ │ ├── InvalidArgumentException.txt │ │ ├── MigrationBusException.txt │ │ ├── MigrationException.txt │ │ ├── MigrationExceptionInterface.txt │ │ ├── MigrationMissingException.txt │ │ ├── RepositoryException.txt │ │ ├── ResolverException.txt │ │ ├── StorageException.txt │ │ ├── TimelineException.txt │ │ └── index.txt │ │ ├── Migration │ │ ├── AbstractMigration.txt │ │ ├── Capabilities │ │ │ ├── OptionsAwareInterface.txt │ │ │ ├── TransactionAwareInterface.txt │ │ │ └── index.txt │ │ ├── Command │ │ │ ├── Middleware │ │ │ │ ├── AbstractMiddleware.txt │ │ │ │ ├── SetOptionsMiddleware.txt │ │ │ │ ├── TransactionMiddleware.txt │ │ │ │ └── index.txt │ │ │ ├── MigrateCommand.txt │ │ │ ├── MigrateHandler.txt │ │ │ ├── MigrationBus.txt │ │ │ ├── MigrationBusFactory.txt │ │ │ └── index.txt │ │ ├── Factory │ │ │ ├── FactoryInterface.txt │ │ │ ├── SimpleFactory.txt │ │ │ └── index.txt │ │ ├── MigrationInterface.txt │ │ ├── Options.txt │ │ ├── OptionsInterface.txt │ │ └── index.txt │ │ ├── Repository │ │ ├── AbstractRepository.txt │ │ ├── DirectoryRepository.txt │ │ ├── RepositoryInterface.txt │ │ ├── RepositoryStack.txt │ │ └── index.txt │ │ ├── Storage │ │ ├── AbstractStorage.txt │ │ ├── StorageInterface.txt │ │ └── index.txt │ │ ├── Timeline.txt │ │ ├── Timeline │ │ ├── AbstractTimeline.txt │ │ ├── TimelineEmitter.txt │ │ ├── TimelineFactory.txt │ │ ├── TimelineInterface.txt │ │ └── index.txt │ │ ├── Version.txt │ │ ├── Version │ │ ├── Collection.txt │ │ ├── Collection │ │ │ ├── Linked.txt │ │ │ ├── Migrated.txt │ │ │ ├── Resolver │ │ │ │ ├── AbstractResolver.txt │ │ │ │ ├── DefaultResolverStackFactory.txt │ │ │ │ ├── FirstLastResolver.txt │ │ │ │ ├── HeadResolver.txt │ │ │ │ ├── IdResolver.txt │ │ │ │ ├── OffsetResolver.txt │ │ │ │ ├── ResolverInterface.txt │ │ │ │ ├── ResolverStack.txt │ │ │ │ └── index.txt │ │ │ ├── Sortable.txt │ │ │ └── index.txt │ │ ├── Comparator │ │ │ ├── ComparatorAwareInterface.txt │ │ │ ├── ComparatorAwareTrait.txt │ │ │ ├── ComparatorInterface.txt │ │ │ ├── DefaultComparator.txt │ │ │ └── index.txt │ │ ├── VersionInterface.txt │ │ └── index.txt │ │ └── index.txt │ ├── reference.txt │ └── requirements.txt └── src ├── Common ├── Collection │ ├── AbstractCollection.php │ └── CollectionInterface.php ├── EntityInterface.php ├── Event │ ├── AbstractDomainEvent.php │ ├── Context │ │ ├── CollectionContext.php │ │ ├── CollectionContextInterface.php │ │ ├── ContextInterface.php │ │ └── HasContextTrait.php │ ├── DomainEventInterface.php │ ├── MutePublisher.php │ ├── Progress.php │ ├── Publisher │ │ └── HasInternalPublisherTrait.php │ └── PublisherInterface.php └── ValueObjectInterface.php ├── Delta ├── Collection │ ├── Collection.php │ ├── Migrated.php │ ├── ResolvableCollectionInterface.php │ └── Resolver │ │ ├── AbstractResolver.php │ │ ├── DefaultResolverStackFactory.php │ │ ├── FilenameResolver.php │ │ ├── FirstLastResolver.php │ │ ├── HeadResolver.php │ │ ├── LazyIdResolver.php │ │ ├── OffsetResolver.php │ │ ├── ResolverInterface.php │ │ └── ResolverStack.php ├── Comparator │ ├── AbstractComparator.php │ ├── ComparatorInterface.php │ ├── IdComparator.php │ ├── MigrationComparator.php │ ├── NamespacesAwareComparator.php │ └── ReversedComparator.php ├── Delta.php ├── DeltaId.php ├── DeltaInterface.php └── Repository │ ├── Mapper │ └── VersionMapperInterface.php │ ├── VersionRepository.php │ └── VersionRepositoryInterface.php ├── Exception ├── BaleenException.php ├── InvalidArgumentException.php ├── Migration │ └── Repository │ │ └── RepositoryException.php ├── MigrationBusException.php ├── MigrationException.php ├── MigrationMissingException.php ├── Service │ └── Runner │ │ └── RunnerException.php ├── TimelineException.php └── Version │ ├── Collection │ ├── AlreadyExistsException.php │ ├── CollectionException.php │ └── ResolverException.php │ ├── ComparatorException.php │ └── Repository │ ├── Mapper │ └── MapperException.php │ └── StorageException.php ├── Migration ├── AbstractMigration.php ├── Capabilities │ ├── OptionsAwareInterface.php │ └── TransactionAwareInterface.php ├── Factory │ ├── FactoryInterface.php │ └── SimpleFactory.php ├── MigrationInterface.php ├── Options.php ├── Options │ └── Direction.php ├── OptionsInterface.php └── Repository │ ├── AggregateMigrationRepository.php │ ├── Mapper │ ├── Definition.php │ ├── DefinitionInterface.php │ ├── DirectoryMapper.php │ └── MigrationMapperInterface.php │ ├── MigrationRepository.php │ └── MigrationRepositoryInterface.php └── Service ├── DomainBus ├── DomainBus.php ├── DomainBusInterface.php ├── DomainCommandInterface.php ├── Factory │ └── DomainCommandBusFactory.php ├── HasCollectionTrait.php ├── HasOptionsTrait.php ├── HasVersionRepositoryTrait.php └── Migrate │ ├── Collection │ ├── CollectionCommand.php │ └── CollectionHandler.php │ ├── Converge │ ├── ConvergeCommand.php │ └── ConvergeHandler.php │ ├── HasTargetTrait.php │ └── Single │ ├── SingleCommand.php │ └── SingleHandler.php ├── MigrationBus ├── HasMigrationBusTrait.php ├── Middleware │ ├── SetOptionsMiddleware.php │ └── TransactionMiddleware.php ├── MigrateCommand.php ├── MigrateHandler.php ├── MigrationBus.php └── MigrationBusInterface.php └── Runner ├── CollectionRunner.php ├── Event ├── Collection │ ├── CollectionAfterEvent.php │ ├── CollectionBeforeEvent.php │ └── CollectionEvent.php └── Migration │ ├── MigrateAfterEvent.php │ ├── MigrateBeforeEvent.php │ └── MigrationEvent.php ├── Factory ├── CollectionRunnerFactory.php ├── CollectionRunnerFactoryInterface.php └── CreatesCollectionRunnerTrait.php ├── HasRunnerTrait.php ├── MigrationRunner.php ├── MigrationRunnerInterface.php └── RunnerInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/composer.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/bin/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/bin/build-docs.sh -------------------------------------------------------------------------------- /docs/bin/generate-reference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/bin/generate-reference.sh -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/domain-model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/domain-model.txt -------------------------------------------------------------------------------- /docs/en/domain-model/glossary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/domain-model/glossary.txt -------------------------------------------------------------------------------- /docs/en/domain-model/migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/domain-model/migration.txt -------------------------------------------------------------------------------- /docs/en/domain-model/timeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/domain-model/timeline.txt -------------------------------------------------------------------------------- /docs/en/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/examples.txt -------------------------------------------------------------------------------- /docs/en/examples/simple-usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/examples/simple-usage.txt -------------------------------------------------------------------------------- /docs/en/getting-started.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/getting-started.txt -------------------------------------------------------------------------------- /docs/en/implementations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/implementations.txt -------------------------------------------------------------------------------- /docs/en/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/index.txt -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/CanDispatchEventsTrait.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/CanDispatchEventsTrait.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/EmitterInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/EmitterInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/EventInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/EventInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/HasEmitterTrait.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/HasEmitterTrait.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/Timeline/CollectionEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/Timeline/CollectionEvent.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/Timeline/MigrationEvent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/Timeline/MigrationEvent.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/Timeline/Progress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/Timeline/Progress.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/Timeline/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/Timeline/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Event/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Event/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/BaleenException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/BaleenException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/CollectionException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/CollectionException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/InvalidArgumentException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/InvalidArgumentException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/MigrationBusException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/MigrationBusException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/MigrationException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/MigrationException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/MigrationExceptionInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/MigrationExceptionInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/MigrationMissingException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/MigrationMissingException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/RepositoryException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/RepositoryException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/ResolverException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/ResolverException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/StorageException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/StorageException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/TimelineException.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/TimelineException.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Exception/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Exception/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/AbstractMigration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/AbstractMigration.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Capabilities/OptionsAwareInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Capabilities/OptionsAwareInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Capabilities/TransactionAwareInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Capabilities/TransactionAwareInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Capabilities/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Capabilities/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/AbstractMiddleware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/AbstractMiddleware.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/SetOptionsMiddleware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/SetOptionsMiddleware.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/TransactionMiddleware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/TransactionMiddleware.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/Middleware/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/MigrateCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/MigrateCommand.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/MigrateHandler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/MigrateHandler.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/MigrationBus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/MigrationBus.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/MigrationBusFactory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/MigrationBusFactory.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Command/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Command/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Factory/FactoryInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Factory/FactoryInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Factory/SimpleFactory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Factory/SimpleFactory.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Factory/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Factory/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/MigrationInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/MigrationInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/Options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/Options.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/OptionsInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/OptionsInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Migration/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Migration/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Repository/AbstractRepository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Repository/AbstractRepository.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Repository/DirectoryRepository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Repository/DirectoryRepository.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Repository/RepositoryInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Repository/RepositoryInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Repository/RepositoryStack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Repository/RepositoryStack.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Repository/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Repository/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Storage/AbstractStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Storage/AbstractStorage.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Storage/StorageInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Storage/StorageInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Storage/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Storage/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Timeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Timeline.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Timeline/AbstractTimeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Timeline/AbstractTimeline.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Timeline/TimelineEmitter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Timeline/TimelineEmitter.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Timeline/TimelineFactory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Timeline/TimelineFactory.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Timeline/TimelineInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Timeline/TimelineInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Timeline/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Timeline/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Linked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Linked.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Migrated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Migrated.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/AbstractResolver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/AbstractResolver.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/DefaultResolverStackFactory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/DefaultResolverStackFactory.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/FirstLastResolver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/FirstLastResolver.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/HeadResolver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/HeadResolver.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/IdResolver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/IdResolver.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/OffsetResolver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/OffsetResolver.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/ResolverInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/ResolverInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/ResolverStack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/ResolverStack.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Resolver/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/Sortable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/Sortable.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Collection/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Collection/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Comparator/ComparatorAwareInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Comparator/ComparatorAwareInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Comparator/ComparatorAwareTrait.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Comparator/ComparatorAwareTrait.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Comparator/ComparatorInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Comparator/ComparatorInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Comparator/DefaultComparator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Comparator/DefaultComparator.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/Comparator/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/Comparator/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/VersionInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/VersionInterface.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/Version/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/Version/index.txt -------------------------------------------------------------------------------- /docs/en/ref/Baleen/Migrations/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/ref/Baleen/Migrations/index.txt -------------------------------------------------------------------------------- /docs/en/reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/reference.txt -------------------------------------------------------------------------------- /docs/en/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/docs/en/requirements.txt -------------------------------------------------------------------------------- /src/Common/Collection/AbstractCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Collection/AbstractCollection.php -------------------------------------------------------------------------------- /src/Common/Collection/CollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Collection/CollectionInterface.php -------------------------------------------------------------------------------- /src/Common/EntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/EntityInterface.php -------------------------------------------------------------------------------- /src/Common/Event/AbstractDomainEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/AbstractDomainEvent.php -------------------------------------------------------------------------------- /src/Common/Event/Context/CollectionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/Context/CollectionContext.php -------------------------------------------------------------------------------- /src/Common/Event/Context/CollectionContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/Context/CollectionContextInterface.php -------------------------------------------------------------------------------- /src/Common/Event/Context/ContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/Context/ContextInterface.php -------------------------------------------------------------------------------- /src/Common/Event/Context/HasContextTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/Context/HasContextTrait.php -------------------------------------------------------------------------------- /src/Common/Event/DomainEventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/DomainEventInterface.php -------------------------------------------------------------------------------- /src/Common/Event/MutePublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/MutePublisher.php -------------------------------------------------------------------------------- /src/Common/Event/Progress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/Progress.php -------------------------------------------------------------------------------- /src/Common/Event/Publisher/HasInternalPublisherTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/Publisher/HasInternalPublisherTrait.php -------------------------------------------------------------------------------- /src/Common/Event/PublisherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/Event/PublisherInterface.php -------------------------------------------------------------------------------- /src/Common/ValueObjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Common/ValueObjectInterface.php -------------------------------------------------------------------------------- /src/Delta/Collection/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Collection.php -------------------------------------------------------------------------------- /src/Delta/Collection/Migrated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Migrated.php -------------------------------------------------------------------------------- /src/Delta/Collection/ResolvableCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/ResolvableCollectionInterface.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/AbstractResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/AbstractResolver.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/DefaultResolverStackFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/DefaultResolverStackFactory.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/FilenameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/FilenameResolver.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/FirstLastResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/FirstLastResolver.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/HeadResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/HeadResolver.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/LazyIdResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/LazyIdResolver.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/OffsetResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/OffsetResolver.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/ResolverInterface.php -------------------------------------------------------------------------------- /src/Delta/Collection/Resolver/ResolverStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Collection/Resolver/ResolverStack.php -------------------------------------------------------------------------------- /src/Delta/Comparator/AbstractComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Comparator/AbstractComparator.php -------------------------------------------------------------------------------- /src/Delta/Comparator/ComparatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Comparator/ComparatorInterface.php -------------------------------------------------------------------------------- /src/Delta/Comparator/IdComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Comparator/IdComparator.php -------------------------------------------------------------------------------- /src/Delta/Comparator/MigrationComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Comparator/MigrationComparator.php -------------------------------------------------------------------------------- /src/Delta/Comparator/NamespacesAwareComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Comparator/NamespacesAwareComparator.php -------------------------------------------------------------------------------- /src/Delta/Comparator/ReversedComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Comparator/ReversedComparator.php -------------------------------------------------------------------------------- /src/Delta/Delta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Delta.php -------------------------------------------------------------------------------- /src/Delta/DeltaId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/DeltaId.php -------------------------------------------------------------------------------- /src/Delta/DeltaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/DeltaInterface.php -------------------------------------------------------------------------------- /src/Delta/Repository/Mapper/VersionMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Repository/Mapper/VersionMapperInterface.php -------------------------------------------------------------------------------- /src/Delta/Repository/VersionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Repository/VersionRepository.php -------------------------------------------------------------------------------- /src/Delta/Repository/VersionRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Delta/Repository/VersionRepositoryInterface.php -------------------------------------------------------------------------------- /src/Exception/BaleenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/BaleenException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/Migration/Repository/RepositoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Migration/Repository/RepositoryException.php -------------------------------------------------------------------------------- /src/Exception/MigrationBusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/MigrationBusException.php -------------------------------------------------------------------------------- /src/Exception/MigrationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/MigrationException.php -------------------------------------------------------------------------------- /src/Exception/MigrationMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/MigrationMissingException.php -------------------------------------------------------------------------------- /src/Exception/Service/Runner/RunnerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Service/Runner/RunnerException.php -------------------------------------------------------------------------------- /src/Exception/TimelineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/TimelineException.php -------------------------------------------------------------------------------- /src/Exception/Version/Collection/AlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Version/Collection/AlreadyExistsException.php -------------------------------------------------------------------------------- /src/Exception/Version/Collection/CollectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Version/Collection/CollectionException.php -------------------------------------------------------------------------------- /src/Exception/Version/Collection/ResolverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Version/Collection/ResolverException.php -------------------------------------------------------------------------------- /src/Exception/Version/ComparatorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Version/ComparatorException.php -------------------------------------------------------------------------------- /src/Exception/Version/Repository/Mapper/MapperException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Version/Repository/Mapper/MapperException.php -------------------------------------------------------------------------------- /src/Exception/Version/Repository/StorageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Exception/Version/Repository/StorageException.php -------------------------------------------------------------------------------- /src/Migration/AbstractMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/AbstractMigration.php -------------------------------------------------------------------------------- /src/Migration/Capabilities/OptionsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Capabilities/OptionsAwareInterface.php -------------------------------------------------------------------------------- /src/Migration/Capabilities/TransactionAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Capabilities/TransactionAwareInterface.php -------------------------------------------------------------------------------- /src/Migration/Factory/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Factory/FactoryInterface.php -------------------------------------------------------------------------------- /src/Migration/Factory/SimpleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Factory/SimpleFactory.php -------------------------------------------------------------------------------- /src/Migration/MigrationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/MigrationInterface.php -------------------------------------------------------------------------------- /src/Migration/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Options.php -------------------------------------------------------------------------------- /src/Migration/Options/Direction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Options/Direction.php -------------------------------------------------------------------------------- /src/Migration/OptionsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/OptionsInterface.php -------------------------------------------------------------------------------- /src/Migration/Repository/AggregateMigrationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/AggregateMigrationRepository.php -------------------------------------------------------------------------------- /src/Migration/Repository/Mapper/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/Mapper/Definition.php -------------------------------------------------------------------------------- /src/Migration/Repository/Mapper/DefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/Mapper/DefinitionInterface.php -------------------------------------------------------------------------------- /src/Migration/Repository/Mapper/DirectoryMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/Mapper/DirectoryMapper.php -------------------------------------------------------------------------------- /src/Migration/Repository/Mapper/MigrationMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/Mapper/MigrationMapperInterface.php -------------------------------------------------------------------------------- /src/Migration/Repository/MigrationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/MigrationRepository.php -------------------------------------------------------------------------------- /src/Migration/Repository/MigrationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Migration/Repository/MigrationRepositoryInterface.php -------------------------------------------------------------------------------- /src/Service/DomainBus/DomainBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/DomainBus.php -------------------------------------------------------------------------------- /src/Service/DomainBus/DomainBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/DomainBusInterface.php -------------------------------------------------------------------------------- /src/Service/DomainBus/DomainCommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/DomainCommandInterface.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Factory/DomainCommandBusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Factory/DomainCommandBusFactory.php -------------------------------------------------------------------------------- /src/Service/DomainBus/HasCollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/HasCollectionTrait.php -------------------------------------------------------------------------------- /src/Service/DomainBus/HasOptionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/HasOptionsTrait.php -------------------------------------------------------------------------------- /src/Service/DomainBus/HasVersionRepositoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/HasVersionRepositoryTrait.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/Collection/CollectionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/Collection/CollectionCommand.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/Collection/CollectionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/Collection/CollectionHandler.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/Converge/ConvergeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/Converge/ConvergeCommand.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/Converge/ConvergeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/Converge/ConvergeHandler.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/HasTargetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/HasTargetTrait.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/Single/SingleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/Single/SingleCommand.php -------------------------------------------------------------------------------- /src/Service/DomainBus/Migrate/Single/SingleHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/DomainBus/Migrate/Single/SingleHandler.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/HasMigrationBusTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/HasMigrationBusTrait.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/Middleware/SetOptionsMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/Middleware/SetOptionsMiddleware.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/Middleware/TransactionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/Middleware/TransactionMiddleware.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/MigrateCommand.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/MigrateHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/MigrateHandler.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/MigrationBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/MigrationBus.php -------------------------------------------------------------------------------- /src/Service/MigrationBus/MigrationBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/MigrationBus/MigrationBusInterface.php -------------------------------------------------------------------------------- /src/Service/Runner/CollectionRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/CollectionRunner.php -------------------------------------------------------------------------------- /src/Service/Runner/Event/Collection/CollectionAfterEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Event/Collection/CollectionAfterEvent.php -------------------------------------------------------------------------------- /src/Service/Runner/Event/Collection/CollectionBeforeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Event/Collection/CollectionBeforeEvent.php -------------------------------------------------------------------------------- /src/Service/Runner/Event/Collection/CollectionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Event/Collection/CollectionEvent.php -------------------------------------------------------------------------------- /src/Service/Runner/Event/Migration/MigrateAfterEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Event/Migration/MigrateAfterEvent.php -------------------------------------------------------------------------------- /src/Service/Runner/Event/Migration/MigrateBeforeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Event/Migration/MigrateBeforeEvent.php -------------------------------------------------------------------------------- /src/Service/Runner/Event/Migration/MigrationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Event/Migration/MigrationEvent.php -------------------------------------------------------------------------------- /src/Service/Runner/Factory/CollectionRunnerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Factory/CollectionRunnerFactory.php -------------------------------------------------------------------------------- /src/Service/Runner/Factory/CollectionRunnerFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Factory/CollectionRunnerFactoryInterface.php -------------------------------------------------------------------------------- /src/Service/Runner/Factory/CreatesCollectionRunnerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/Factory/CreatesCollectionRunnerTrait.php -------------------------------------------------------------------------------- /src/Service/Runner/HasRunnerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/HasRunnerTrait.php -------------------------------------------------------------------------------- /src/Service/Runner/MigrationRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/MigrationRunner.php -------------------------------------------------------------------------------- /src/Service/Runner/MigrationRunnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/MigrationRunnerInterface.php -------------------------------------------------------------------------------- /src/Service/Runner/RunnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsomoza/baleen-migrations/HEAD/src/Service/Runner/RunnerInterface.php --------------------------------------------------------------------------------