PHP code example of cmarfil / pending-migration-advisor

1. Go to this page and download the library: Download cmarfil/pending-migration-advisor library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

cmarfil / pending-migration-advisor example snippets


	"	"cmarfil/pending-migration-advisor": ">=1.1"
	}
	

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

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