umanit/phinx-bundle

umanit phinx bundle

Installs: 50 866

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 10

Forks: 9

Open Issues: 1

Type:symfony-bundle

2.0.5 2022-07-19 10:39 UTC

This package is auto-updated.

Last update: 2024-04-03 15:54:06 UTC


README

Composer

The fastest way to install Phinx bundle is to add it to your project using Composer (http://getcomposer.org/).

  1. Install Composer:

    curl -sS https://getcomposer.org/installer | php
    
  2. Require Phinx bundle as a dependency using Composer:

    php composer.phar require umanit/phinx-bundle
    
  3. Install bundle:

    php composer.phar install
    
  4. Add bundle to config/bundles.php

    return [
        // [...]
        Umanit\PhinxBundle\UmanitPhinxBundle::class => ['all' => true],
    ];
  5. Add bundle config to config/packages/umanit_phinx.yaml

    Example:

    umanit_phinx:
        environment:
            connection:
                dsn: 'mysql://db_user:db_password@127.0.0.1:3306/db_name'

    See DependencyInjection/Configuration.php for full list of available options.