PHP code example of theknarf / build.php

1. Go to this page and download the library: Download theknarf/build.php 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/ */

    

theknarf / build.php example snippets


{
    "  "theknarf/build.php": "dev-master"
    }
}


ld = new TheKnarf\Buildphp\Build();
$build->task("default", array("composer"), function() {});
$build->task('composer', function() {
	$this->exec("composer install");
});
$build();