PHP code example of alextigaer / rep-o-matic

1. Go to this page and download the library: Download alextigaer/rep-o-matic 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/ */

    

alextigaer / rep-o-matic example snippets

sh
php artisan repo:create RepoName
sh
// Create the repo files excluding the exceptions
php artisan repo:create RepoName --e=n
sh
// Create the repo files excluding the migration
php artisan repo:create RepoName --n=n
sh
// Create the repo files excluding the seeder
php artisan repo:create RepoName --s=n