PHP code example of codecycler / laravel-changelog

1. Go to this page and download the library: Download codecycler/laravel-changelog 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/ */

    

codecycler / laravel-changelog example snippets


return [
    /**
     * The adapter being used by the package to get the releases.
     */
    'releaseAdapter' => \Codecycler\Changelog\Adapters\GithubAdapter::class,

    /**
     * The repository which should be used for release lookup.
     */
    'repository' => 'learnkit-dev/rubricsmaken-site',
];

<livewire:latest-version-frontend />
bash
php artisan vendor:publish --tag="laravel-changelog-config"
bash
php artisan vendor:publish --tag="laravel-changelog-views"