You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
520 B
26 lines
520 B
<?php
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
$readmeGenerator = new \voku\PhpReadmeHelper\GenerateApi();
|
|
$readmeGenerator->templateMethod = <<<RAW
|
|
#### %name%
|
|
<a href="#voku-php-readme-class-methods">↑</a>
|
|
%description%
|
|
|
|
**Parameters:**
|
|
%params%
|
|
|
|
**Return:**
|
|
%return%
|
|
|
|
--------
|
|
|
|
RAW;
|
|
$readmeText = ($readmeGenerator)->generate(
|
|
__DIR__ . '/../src/voku/helper/ASCII.php',
|
|
__DIR__ . '/docs/base.md'
|
|
);
|
|
|
|
file_put_contents(__DIR__ . '/../README.md', $readmeText);
|