1. Go to this page and download the library: Download schenke-io/packaging-tools 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/ */
schenke-io / packaging-tools example snippets
henkeIo\PackagingTools\Markdown\MarkdownAssembler;
/*
* this scripts make the package itself and tests its functionality
*/
try {
$mda = new MarkdownAssembler(/* subdirectory for markdown lass phpdoc
$mda->addClassMarkdown(MarkdownAssembler::class);
// path relative to root directory
$mda->writeMarkdown("README.md");
} catch (Exception $e) {
echo "ERROR: " . $e->getMessage() . PHP_EOL;
}