library silex-doctrine-migrations
Doctrine migration service provider for Silex
dbtlr/silex-doctrine-migrations
Doctrine migration service provider for Silex
- Friday, February 16, 2018
- by nodrew
- Repository
- 1 Watchers
- 13 Stars
- 5,387 Installations
- PHP
- 4 Dependents
- 0 Suggesters
- 10 Forks
- 2 Open issues
- 2 Versions
- 1 % Grown
Silex Migration Provider
This is a wrapper for the Doctrine Migrations project., (*1)
For more information on how to use the schema manager, please see Doctrine's Schema Manager documentation., (*2)
Install via Composer
composer.phar require dbtlr/silex-doctrine-migrations
Add service provider
$app->register(new \Dbtlr\MigrationProvider\Provider\MigrationServiceProvider(), array(
'db.migrations.path' => __DIR__ . '/../app/migrations',
));
Config options
-
db.migrations.path
(required): The full path where you want to store your migration classes.
-
db.migrations.table_name
(optional): The name of the table that we store meta information about the state of migrations. Defaults to: migration_versions.
-
db.migrations.namespace
(optional): The namespace for the migration classes (defaults to: DoctrineMigration).
-
db.migrations.name
(optional): TThe name of the migrations to use.
Available commands
- migrations:execute Execute a single migration version up or down manually.
- migrations:generate Generate a blank migration class.
- migrations:migrate Execute a migration to a specified version or the latest available version.
- migrations:status View the status of a set of migrations.
- migrations:version Manually add and delete migration versions from the version table.