├── LICENSE ├── README.md ├── UPGRADE.md ├── bin ├── doctrine-migrations └── doctrine-migrations.php ├── composer.json └── src ├── AbstractMigration.php ├── Configuration ├── Configuration.php ├── Connection │ ├── ConfigurationFile.php │ ├── ConnectionLoader.php │ ├── ConnectionRegistryConnection.php │ ├── Exception │ │ ├── ConnectionNotSpecified.php │ │ ├── FileNotFound.php │ │ ├── InvalidConfiguration.php │ │ └── LoaderException.php │ └── ExistingConnection.php ├── EntityManager │ ├── ConfigurationFile.php │ ├── EntityManagerLoader.php │ ├── Exception │ │ ├── FileNotFound.php │ │ ├── InvalidConfiguration.php │ │ └── LoaderException.php │ ├── ExistingEntityManager.php │ └── ManagerRegistryEntityManager.php ├── Exception │ ├── ConfigurationException.php │ ├── FileNotFound.php │ ├── FrozenConfiguration.php │ ├── InvalidLoader.php │ └── UnknownConfigurationValue.php └── Migration │ ├── ConfigurationArray.php │ ├── ConfigurationFile.php │ ├── ConfigurationFileWithFallback.php │ ├── ConfigurationLoader.php │ ├── Exception │ ├── InvalidConfigurationFormat.php │ ├── InvalidConfigurationKey.php │ ├── JsonNotValid.php │ ├── MissingConfigurationFile.php │ ├── XmlNotValid.php │ ├── YamlNotAvailable.php │ └── YamlNotValid.php │ ├── ExistingConfiguration.php │ ├── FormattedFile.php │ ├── JsonFile.php │ ├── PhpFile.php │ ├── XML │ └── configuration.xsd │ ├── XmlFile.php │ └── YamlFile.php ├── DbalMigrator.php ├── DependencyFactory.php ├── Event ├── Listeners │ └── AutoCommitListener.php ├── MigrationsEventArgs.php └── MigrationsVersionEventArgs.php ├── EventDispatcher.php ├── Events.php ├── Exception ├── AbortMigration.php ├── AlreadyAtVersion.php ├── ControlException.php ├── DependencyException.php ├── DuplicateMigrationVersion.php ├── FrozenDependencies.php ├── FrozenMigration.php ├── IrreversibleMigration.php ├── MetadataStorageError.php ├── MigrationClassNotFound.php ├── MigrationConfigurationConflict.php ├── MigrationException.php ├── MigrationNotAvailable.php ├── MigrationNotExecuted.php ├── MissingDependency.php ├── NoMigrationsFoundWithCriteria.php ├── NoMigrationsToExecute.php ├── NoTablesFound.php ├── PlanAlreadyExecuted.php ├── RollupFailed.php ├── SkipMigration.php └── UnknownMigrationVersion.php ├── FileQueryWriter.php ├── FilesystemMigrationsRepository.php ├── Finder ├── Exception │ ├── FinderException.php │ ├── InvalidDirectory.php │ └── NameIsReserved.php ├── Finder.php ├── GlobFinder.php ├── MigrationFinder.php └── RecursiveRegexFinder.php ├── Generator ├── ClassNameGenerator.php ├── ConcatenationFileBuilder.php ├── DiffGenerator.php ├── Exception │ ├── GeneratorException.php │ ├── InvalidTemplateSpecified.php │ └── NoChangesDetected.php ├── FileBuilder.php ├── Generator.php └── SqlGenerator.php ├── InlineParameterFormatter.php ├── Metadata ├── AvailableMigration.php ├── AvailableMigrationsList.php ├── AvailableMigrationsSet.php ├── ExecutedMigration.php ├── ExecutedMigrationsList.php ├── MigrationPlan.php ├── MigrationPlanList.php └── Storage │ ├── MetadataStorage.php │ ├── MetadataStorageConfiguration.php │ ├── TableMetadataStorage.php │ └── TableMetadataStorageConfiguration.php ├── MigrationsRepository.php ├── Migrator.php ├── MigratorConfiguration.php ├── ParameterFormatter.php ├── Provider ├── DBALSchemaDiffProvider.php ├── EmptySchemaProvider.php ├── Exception │ ├── NoMappingFound.php │ └── ProviderException.php ├── LazySchema.php ├── LazySchemaDiffProvider.php ├── OrmSchemaProvider.php ├── SchemaDiffProvider.php ├── SchemaProvider.php └── StubSchemaProvider.php ├── Query ├── Exception │ └── InvalidArguments.php └── Query.php ├── QueryWriter.php ├── Rollup.php ├── SchemaDumper.php ├── Tools ├── BooleanStringFormatter.php ├── BytesFormatter.php ├── Console │ ├── Command │ │ ├── CurrentCommand.php │ │ ├── DiffCommand.php │ │ ├── DoctrineCommand.php │ │ ├── DumpSchemaCommand.php │ │ ├── ExecuteCommand.php │ │ ├── GenerateCommand.php │ │ ├── LatestCommand.php │ │ ├── ListCommand.php │ │ ├── MigrateCommand.php │ │ ├── RollupCommand.php │ │ ├── StatusCommand.php │ │ ├── SyncMetadataCommand.php │ │ ├── UpToDateCommand.php │ │ └── VersionCommand.php │ ├── ConsoleInputMigratorConfigurationFactory.php │ ├── ConsoleRunner.php │ ├── Exception │ │ ├── ConsoleException.php │ │ ├── DependenciesNotSatisfied.php │ │ ├── DirectoryDoesNotExist.php │ │ ├── FileTypeNotSupported.php │ │ ├── InvalidOptionUsage.php │ │ ├── SchemaDumpRequiresNoMigrations.php │ │ ├── VersionAlreadyExists.php │ │ └── VersionDoesNotExist.php │ ├── Helper │ │ ├── ConfigurationHelper.php │ │ ├── MigrationDirectoryHelper.php │ │ └── MigrationStatusInfosHelper.php │ ├── InvalidAllOrNothingConfiguration.php │ └── MigratorConfigurationFactory.php └── TransactionHelper.php └── Version ├── AliasResolver.php ├── AlphabeticalComparator.php ├── Comparator.php ├── CurrentMigrationStatusCalculator.php ├── DbalExecutor.php ├── DbalMigrationFactory.php ├── DefaultAliasResolver.php ├── Direction.php ├── ExecutionResult.php ├── Executor.php ├── MigrationFactory.php ├── MigrationPlanCalculator.php ├── MigrationStatusCalculator.php ├── SortedMigrationPlanCalculator.php ├── State.php └── Version.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /bin/doctrine-migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/bin/doctrine-migrations -------------------------------------------------------------------------------- /bin/doctrine-migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/bin/doctrine-migrations.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/AbstractMigration.php -------------------------------------------------------------------------------- /src/Configuration/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Configuration.php -------------------------------------------------------------------------------- /src/Configuration/Connection/ConfigurationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/ConfigurationFile.php -------------------------------------------------------------------------------- /src/Configuration/Connection/ConnectionLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/ConnectionLoader.php -------------------------------------------------------------------------------- /src/Configuration/Connection/ConnectionRegistryConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/ConnectionRegistryConnection.php -------------------------------------------------------------------------------- /src/Configuration/Connection/Exception/ConnectionNotSpecified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/Exception/ConnectionNotSpecified.php -------------------------------------------------------------------------------- /src/Configuration/Connection/Exception/FileNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/Exception/FileNotFound.php -------------------------------------------------------------------------------- /src/Configuration/Connection/Exception/InvalidConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/Exception/InvalidConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/Connection/Exception/LoaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/Exception/LoaderException.php -------------------------------------------------------------------------------- /src/Configuration/Connection/ExistingConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Connection/ExistingConnection.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/ConfigurationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/ConfigurationFile.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/EntityManagerLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/EntityManagerLoader.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/Exception/FileNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/Exception/FileNotFound.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/Exception/InvalidConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/Exception/InvalidConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/Exception/LoaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/Exception/LoaderException.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/ExistingEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/ExistingEntityManager.php -------------------------------------------------------------------------------- /src/Configuration/EntityManager/ManagerRegistryEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/EntityManager/ManagerRegistryEntityManager.php -------------------------------------------------------------------------------- /src/Configuration/Exception/ConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Exception/ConfigurationException.php -------------------------------------------------------------------------------- /src/Configuration/Exception/FileNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Exception/FileNotFound.php -------------------------------------------------------------------------------- /src/Configuration/Exception/FrozenConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Exception/FrozenConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/Exception/InvalidLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Exception/InvalidLoader.php -------------------------------------------------------------------------------- /src/Configuration/Exception/UnknownConfigurationValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Exception/UnknownConfigurationValue.php -------------------------------------------------------------------------------- /src/Configuration/Migration/ConfigurationArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/ConfigurationArray.php -------------------------------------------------------------------------------- /src/Configuration/Migration/ConfigurationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/ConfigurationFile.php -------------------------------------------------------------------------------- /src/Configuration/Migration/ConfigurationFileWithFallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/ConfigurationFileWithFallback.php -------------------------------------------------------------------------------- /src/Configuration/Migration/ConfigurationLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/ConfigurationLoader.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/InvalidConfigurationFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/InvalidConfigurationFormat.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/InvalidConfigurationKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/InvalidConfigurationKey.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/JsonNotValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/JsonNotValid.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/MissingConfigurationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/MissingConfigurationFile.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/XmlNotValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/XmlNotValid.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/YamlNotAvailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/YamlNotAvailable.php -------------------------------------------------------------------------------- /src/Configuration/Migration/Exception/YamlNotValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/Exception/YamlNotValid.php -------------------------------------------------------------------------------- /src/Configuration/Migration/ExistingConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/ExistingConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/Migration/FormattedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/FormattedFile.php -------------------------------------------------------------------------------- /src/Configuration/Migration/JsonFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/JsonFile.php -------------------------------------------------------------------------------- /src/Configuration/Migration/PhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/PhpFile.php -------------------------------------------------------------------------------- /src/Configuration/Migration/XML/configuration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/XML/configuration.xsd -------------------------------------------------------------------------------- /src/Configuration/Migration/XmlFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/XmlFile.php -------------------------------------------------------------------------------- /src/Configuration/Migration/YamlFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Configuration/Migration/YamlFile.php -------------------------------------------------------------------------------- /src/DbalMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/DbalMigrator.php -------------------------------------------------------------------------------- /src/DependencyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/DependencyFactory.php -------------------------------------------------------------------------------- /src/Event/Listeners/AutoCommitListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Event/Listeners/AutoCommitListener.php -------------------------------------------------------------------------------- /src/Event/MigrationsEventArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Event/MigrationsEventArgs.php -------------------------------------------------------------------------------- /src/Event/MigrationsVersionEventArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Event/MigrationsVersionEventArgs.php -------------------------------------------------------------------------------- /src/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/EventDispatcher.php -------------------------------------------------------------------------------- /src/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Events.php -------------------------------------------------------------------------------- /src/Exception/AbortMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/AbortMigration.php -------------------------------------------------------------------------------- /src/Exception/AlreadyAtVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/AlreadyAtVersion.php -------------------------------------------------------------------------------- /src/Exception/ControlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/ControlException.php -------------------------------------------------------------------------------- /src/Exception/DependencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/DependencyException.php -------------------------------------------------------------------------------- /src/Exception/DuplicateMigrationVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/DuplicateMigrationVersion.php -------------------------------------------------------------------------------- /src/Exception/FrozenDependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/FrozenDependencies.php -------------------------------------------------------------------------------- /src/Exception/FrozenMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/FrozenMigration.php -------------------------------------------------------------------------------- /src/Exception/IrreversibleMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/IrreversibleMigration.php -------------------------------------------------------------------------------- /src/Exception/MetadataStorageError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MetadataStorageError.php -------------------------------------------------------------------------------- /src/Exception/MigrationClassNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MigrationClassNotFound.php -------------------------------------------------------------------------------- /src/Exception/MigrationConfigurationConflict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MigrationConfigurationConflict.php -------------------------------------------------------------------------------- /src/Exception/MigrationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MigrationException.php -------------------------------------------------------------------------------- /src/Exception/MigrationNotAvailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MigrationNotAvailable.php -------------------------------------------------------------------------------- /src/Exception/MigrationNotExecuted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MigrationNotExecuted.php -------------------------------------------------------------------------------- /src/Exception/MissingDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/MissingDependency.php -------------------------------------------------------------------------------- /src/Exception/NoMigrationsFoundWithCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/NoMigrationsFoundWithCriteria.php -------------------------------------------------------------------------------- /src/Exception/NoMigrationsToExecute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/NoMigrationsToExecute.php -------------------------------------------------------------------------------- /src/Exception/NoTablesFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/NoTablesFound.php -------------------------------------------------------------------------------- /src/Exception/PlanAlreadyExecuted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/PlanAlreadyExecuted.php -------------------------------------------------------------------------------- /src/Exception/RollupFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/RollupFailed.php -------------------------------------------------------------------------------- /src/Exception/SkipMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/SkipMigration.php -------------------------------------------------------------------------------- /src/Exception/UnknownMigrationVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Exception/UnknownMigrationVersion.php -------------------------------------------------------------------------------- /src/FileQueryWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/FileQueryWriter.php -------------------------------------------------------------------------------- /src/FilesystemMigrationsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/FilesystemMigrationsRepository.php -------------------------------------------------------------------------------- /src/Finder/Exception/FinderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/Exception/FinderException.php -------------------------------------------------------------------------------- /src/Finder/Exception/InvalidDirectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/Exception/InvalidDirectory.php -------------------------------------------------------------------------------- /src/Finder/Exception/NameIsReserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/Exception/NameIsReserved.php -------------------------------------------------------------------------------- /src/Finder/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/Finder.php -------------------------------------------------------------------------------- /src/Finder/GlobFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/GlobFinder.php -------------------------------------------------------------------------------- /src/Finder/MigrationFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/MigrationFinder.php -------------------------------------------------------------------------------- /src/Finder/RecursiveRegexFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Finder/RecursiveRegexFinder.php -------------------------------------------------------------------------------- /src/Generator/ClassNameGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/ClassNameGenerator.php -------------------------------------------------------------------------------- /src/Generator/ConcatenationFileBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/ConcatenationFileBuilder.php -------------------------------------------------------------------------------- /src/Generator/DiffGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/DiffGenerator.php -------------------------------------------------------------------------------- /src/Generator/Exception/GeneratorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/Exception/GeneratorException.php -------------------------------------------------------------------------------- /src/Generator/Exception/InvalidTemplateSpecified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/Exception/InvalidTemplateSpecified.php -------------------------------------------------------------------------------- /src/Generator/Exception/NoChangesDetected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/Exception/NoChangesDetected.php -------------------------------------------------------------------------------- /src/Generator/FileBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/FileBuilder.php -------------------------------------------------------------------------------- /src/Generator/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/Generator.php -------------------------------------------------------------------------------- /src/Generator/SqlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Generator/SqlGenerator.php -------------------------------------------------------------------------------- /src/InlineParameterFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/InlineParameterFormatter.php -------------------------------------------------------------------------------- /src/Metadata/AvailableMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/AvailableMigration.php -------------------------------------------------------------------------------- /src/Metadata/AvailableMigrationsList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/AvailableMigrationsList.php -------------------------------------------------------------------------------- /src/Metadata/AvailableMigrationsSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/AvailableMigrationsSet.php -------------------------------------------------------------------------------- /src/Metadata/ExecutedMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/ExecutedMigration.php -------------------------------------------------------------------------------- /src/Metadata/ExecutedMigrationsList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/ExecutedMigrationsList.php -------------------------------------------------------------------------------- /src/Metadata/MigrationPlan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/MigrationPlan.php -------------------------------------------------------------------------------- /src/Metadata/MigrationPlanList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/MigrationPlanList.php -------------------------------------------------------------------------------- /src/Metadata/Storage/MetadataStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/Storage/MetadataStorage.php -------------------------------------------------------------------------------- /src/Metadata/Storage/MetadataStorageConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/Storage/MetadataStorageConfiguration.php -------------------------------------------------------------------------------- /src/Metadata/Storage/TableMetadataStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/Storage/TableMetadataStorage.php -------------------------------------------------------------------------------- /src/Metadata/Storage/TableMetadataStorageConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Metadata/Storage/TableMetadataStorageConfiguration.php -------------------------------------------------------------------------------- /src/MigrationsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/MigrationsRepository.php -------------------------------------------------------------------------------- /src/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Migrator.php -------------------------------------------------------------------------------- /src/MigratorConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/MigratorConfiguration.php -------------------------------------------------------------------------------- /src/ParameterFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/ParameterFormatter.php -------------------------------------------------------------------------------- /src/Provider/DBALSchemaDiffProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/DBALSchemaDiffProvider.php -------------------------------------------------------------------------------- /src/Provider/EmptySchemaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/EmptySchemaProvider.php -------------------------------------------------------------------------------- /src/Provider/Exception/NoMappingFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/Exception/NoMappingFound.php -------------------------------------------------------------------------------- /src/Provider/Exception/ProviderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/Exception/ProviderException.php -------------------------------------------------------------------------------- /src/Provider/LazySchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/LazySchema.php -------------------------------------------------------------------------------- /src/Provider/LazySchemaDiffProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/LazySchemaDiffProvider.php -------------------------------------------------------------------------------- /src/Provider/OrmSchemaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/OrmSchemaProvider.php -------------------------------------------------------------------------------- /src/Provider/SchemaDiffProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/SchemaDiffProvider.php -------------------------------------------------------------------------------- /src/Provider/SchemaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/SchemaProvider.php -------------------------------------------------------------------------------- /src/Provider/StubSchemaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Provider/StubSchemaProvider.php -------------------------------------------------------------------------------- /src/Query/Exception/InvalidArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Query/Exception/InvalidArguments.php -------------------------------------------------------------------------------- /src/Query/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Query/Query.php -------------------------------------------------------------------------------- /src/QueryWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/QueryWriter.php -------------------------------------------------------------------------------- /src/Rollup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Rollup.php -------------------------------------------------------------------------------- /src/SchemaDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/SchemaDumper.php -------------------------------------------------------------------------------- /src/Tools/BooleanStringFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/BooleanStringFormatter.php -------------------------------------------------------------------------------- /src/Tools/BytesFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/BytesFormatter.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/CurrentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/CurrentCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/DiffCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/DiffCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/DoctrineCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/DoctrineCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/DumpSchemaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/DumpSchemaCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/ExecuteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/ExecuteCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/GenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/GenerateCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/LatestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/LatestCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/ListCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/MigrateCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/RollupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/RollupCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/StatusCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/StatusCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/SyncMetadataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/SyncMetadataCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/UpToDateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/UpToDateCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/Command/VersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Command/VersionCommand.php -------------------------------------------------------------------------------- /src/Tools/Console/ConsoleInputMigratorConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/ConsoleInputMigratorConfigurationFactory.php -------------------------------------------------------------------------------- /src/Tools/Console/ConsoleRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/ConsoleRunner.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/ConsoleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/ConsoleException.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/DependenciesNotSatisfied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/DependenciesNotSatisfied.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/DirectoryDoesNotExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/DirectoryDoesNotExist.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/FileTypeNotSupported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/FileTypeNotSupported.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/InvalidOptionUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/InvalidOptionUsage.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/SchemaDumpRequiresNoMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/SchemaDumpRequiresNoMigrations.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/VersionAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/VersionAlreadyExists.php -------------------------------------------------------------------------------- /src/Tools/Console/Exception/VersionDoesNotExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Exception/VersionDoesNotExist.php -------------------------------------------------------------------------------- /src/Tools/Console/Helper/ConfigurationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Helper/ConfigurationHelper.php -------------------------------------------------------------------------------- /src/Tools/Console/Helper/MigrationDirectoryHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Helper/MigrationDirectoryHelper.php -------------------------------------------------------------------------------- /src/Tools/Console/Helper/MigrationStatusInfosHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/Helper/MigrationStatusInfosHelper.php -------------------------------------------------------------------------------- /src/Tools/Console/InvalidAllOrNothingConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/InvalidAllOrNothingConfiguration.php -------------------------------------------------------------------------------- /src/Tools/Console/MigratorConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/Console/MigratorConfigurationFactory.php -------------------------------------------------------------------------------- /src/Tools/TransactionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Tools/TransactionHelper.php -------------------------------------------------------------------------------- /src/Version/AliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/AliasResolver.php -------------------------------------------------------------------------------- /src/Version/AlphabeticalComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/AlphabeticalComparator.php -------------------------------------------------------------------------------- /src/Version/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/Comparator.php -------------------------------------------------------------------------------- /src/Version/CurrentMigrationStatusCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/CurrentMigrationStatusCalculator.php -------------------------------------------------------------------------------- /src/Version/DbalExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/DbalExecutor.php -------------------------------------------------------------------------------- /src/Version/DbalMigrationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/DbalMigrationFactory.php -------------------------------------------------------------------------------- /src/Version/DefaultAliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/DefaultAliasResolver.php -------------------------------------------------------------------------------- /src/Version/Direction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/Direction.php -------------------------------------------------------------------------------- /src/Version/ExecutionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/ExecutionResult.php -------------------------------------------------------------------------------- /src/Version/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/Executor.php -------------------------------------------------------------------------------- /src/Version/MigrationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/MigrationFactory.php -------------------------------------------------------------------------------- /src/Version/MigrationPlanCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/MigrationPlanCalculator.php -------------------------------------------------------------------------------- /src/Version/MigrationStatusCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/MigrationStatusCalculator.php -------------------------------------------------------------------------------- /src/Version/SortedMigrationPlanCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/SortedMigrationPlanCalculator.php -------------------------------------------------------------------------------- /src/Version/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/State.php -------------------------------------------------------------------------------- /src/Version/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/migrations/HEAD/src/Version/Version.php --------------------------------------------------------------------------------