2017 © Pedro Peláez
 

library pending-migration-advisor

Laravel pending migrations advisor.

image

cmarfil/pending-migration-advisor

Laravel pending migrations advisor.

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Laravel 5 pending migration advisor

Simple Laravel pending migrations advisor, display a warning popup when are pending migrations to run., (*1)

alt tag, (*2)

For Laravel 4, please use the L4 branch!

Installation

  1. Begin by installing this package through Composer. Edit your project's composer.json file to require-dev cmarfil/pending-migration-advisor., (*3)

    "require-dev": {
        "cmarfil/pending-migration-advisor": ">=1.1"
    }
    
  2. Add 'Cmarfil\PendingMigrationAdvisor\PendingMigrationAdvisorServiceProvider' to providers in app/config/app.php., (*4)

    'providers' => array(
    // ...
    'Cmarfil\PendingMigrationAdvisor\PendingMigrationAdvisorServiceProvider',
    ),
    

Configuration

Open app/config/pending-migration-advisor.php to adjust package configuration. If this file doesn't exist, run:, (*5)

php artisan vendor:publish --provider="Cmarfil\PendingMigrationAdvisor\PendingMigrationAdvisorServiceProvider"
return array(
    /**
     * The migrations path
     */
    'migrations_path' =>  base_path().'/database/migrations',
    /**
     * Turn off the advisor
     */
    'enabled' =>  true,
);

Migrations path

Specify the migrations path ( normally database/migrations ), (*6)

Enabled

Enable or disable the advisor, (*7)

Finally

Contributing

Feel free to create a fork and submit a pull request if you would like to contribute., (*8)

Bug reports

Raise an issue on GitHub if you notice something broken., (*9)

Credits

Html popup injection based on: https://github.com/barryvdh/laravel-debugbar, (*10)

The Versions

23/05 2015

dev-master

9999999-dev https://github.com/cmarfil/laravel-pending-migrations-advisor

Laravel pending migrations advisor.

  Sources   Download

MIT

The Requires

 

laravel migrations migration pending advisor

23/05 2015

v1.1.0

1.1.0.0 https://github.com/cmarfil/laravel-pending-migrations-advisor

Laravel pending migrations advisor.

  Sources   Download

MIT

The Requires

 

laravel migrations migration pending advisor

23/05 2015

dev-develop

dev-develop https://github.com/cmarfil/laravel-pending-migrations-advisor

Laravel pending migrations advisor.

  Sources   Download

MIT

The Requires

 

laravel migrations migration pending advisor

19/02 2015

dev-L4

dev-L4 https://github.com/cmarfil/laravel-pending-migrations-advisor

Laravel pending migrations advisor.

  Sources   Download

MIT

The Requires

 

laravel migrations migration pending advisor

18/02 2015

v1.0.0

1.0.0.0 https://github.com/cmarfil/laravel-pending-migrations-advisor

Laravel pending migrations advisor.

  Sources   Download

MIT

The Requires

 

laravel migrations migration pending advisor