1. Go to this page and download the library: Download deliverist/builder 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/ */
deliverist / builder example snippets
php
use Deliverist\Builder\Builder;
use Deliverist\Builder\Commands;
use Deliverist\Builder\Loggers;
$builder = new Builder('/path/to/source/code', [
'composer-install' => new Commands\ComposerInstall,
'rename' => new Commands\Rename,
'remove' => new Commands\Remove,
], new Loggers\TextLogger);
$builder->make('composer-install')
->make('rename', ['from' => 'index.php', 'to' => 'www/index.php'])
->make('remove', ['file' => 'composer.lock'])
->make('composer-install');