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

3 years ago
  1. <?php
  2. require __DIR__ . '/../vendor/autoload.php';
  3. require __DIR__ . '/vendor/autoload.php';
  4. $readmeGenerator = new \voku\PhpReadmeHelper\GenerateApi();
  5. $readmeGenerator->templateMethod = <<<RAW
  6. #### %name%
  7. <a href="#voku-php-readme-class-methods"></a>
  8. %description%
  9. **Parameters:**
  10. %params%
  11. **Return:**
  12. %return%
  13. --------
  14. RAW;
  15. $readmeText = ($readmeGenerator)->generate(
  16. __DIR__ . '/../src/voku/helper/ASCII.php',
  17. __DIR__ . '/docs/base.md'
  18. );
  19. file_put_contents(__DIR__ . '/../README.md', $readmeText);