PHP code example of alessandro_podo / git-changelog-generator
1. Go to this page and download the library: Download alessandro_podo/git-changelog-generator 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/ */
alessandro_podo / git-changelog-generator example snippets
// config/bundles.php
return [
// ...
AlessandroPodo\GitChangelogGenerator\GitChangelogGenerator::class => ['all' => true],
];
use AlessandroPodo\GitChangelogGenerator\Service\Changelog\Changelog;
#[Route(path: '/changelog')]
public function change(
Changelog $changelog,
): Response {
return $this->render('changelog/index.html.twig', ['content'=> $changelog->render()]);
}