PHP Classes

File: build/generate_docs.php

Recommend this page to a friend!
  Classes of Lars Moelleken   Stringy   build/generate_docs.php   Download  
File: build/generate_docs.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Stringy
Manipulate strings encoded using Unicode
Author: By
Last change:
Date: 3 years ago
Size: 292 bytes
 

Contents

Class file image Download
<?php

require __DIR__ . '/../vendor/autoload.php';
require
__DIR__ . '/vendor/autoload.php';

$readmeText = (new \voku\PhpReadmeHelper\GenerateApi())->generate(
   
__DIR__ . '/../src/Stringy.php',
   
__DIR__ . '/docs/base.md'
);

file_put_contents(__DIR__ . '/../README.md', $readmeText);