mvrhov/phinx-bundle

mvrhov phinx bundle

Installs: 2 177

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 2

Forks: 9

Open Issues: 1

Type:symfony-bundle

v0.9.1 2017-12-28 17:31 UTC

This package is auto-updated.

Last update: 2024-04-22 19:15:22 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 mvrhov/phinx-bundle
    
  3. Install bundle:

    php composer.phar install
    
  4. Add bundle to app/AppKernel.php

        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
            // ...
    
            if ('dev' === $this->getEnvironment()) {
                // ...
                $bundles[] = new \mvrhov\PhinxBundle\mvrhovPhinxBundle();
            }
        }
  5. Add bundle config to app/config/config_dev.yml Example:

    mvrhov_phinx:
        adapters:
            mysql: Phinx\Db\Adapter\MysqlAdapter
        environment:
            connection:        
                adapter: mysql
                host: '%database_host%'
                port: '%database_port%'
                name: '%database_name%'
                user: '%database_user%'
                pass: '%database_password%'
                charset: UTF8

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