PHP code example of kherge / amend

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

    

kherge / amend example snippets




use KevinGH\Amend\Command;
use KevinGH\Amend\Helper;
use Symfony\Component\Console\Application;

$command = new Command('update');
$command->setManifestUri('http://box-project.org/manifest.json');

$app = new Application();
$app->getHelperSet()->set(new Helper());
$app->add($command);