PHPackages                             sebastiaanluca/laravel-changelog - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. sebastiaanluca/laravel-changelog

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

sebastiaanluca/laravel-changelog
================================

Show your project's changelog in your application

1.0.0(5y ago)44.7k31MITPHPPHP ^8.0

Since Sep 19Pushed 5y ago1 watchersCompare

[ Source](https://github.com/sebastiaanluca/laravel-changelog)[ Packagist](https://packagist.org/packages/sebastiaanluca/laravel-changelog)[ Docs](https://github.com/sebastiaanluca/laravel-changelog)[ RSS](/packages/sebastiaanluca-laravel-changelog/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (3)Dependencies (5)Versions (9)Used By (1)

Laravel Changelog
=================

[](#laravel-changelog)

[![Latest stable release](https://camo.githubusercontent.com/5823807e05afe227aae6da71e1001a19026929426748cd5733594d27a9227791/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7365626173746961616e6c7563612f6c61726176656c2d6368616e67656c6f672e7376673f6c6162656c3d737461626c65)](https://packagist.org/packages/sebastiaanluca/laravel-changelog)[![Software license](https://camo.githubusercontent.com/08662bb339bee903c7279b82f3217310d3f196fdfa63b019d294ae85e1a5d7d7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d696e666f726d6174696f6e616c2e737667)](LICENSE.md)[![Build status](https://github.com/sebastiaanluca/laravel-changelog/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/sebastiaanluca/laravel-changelog/actions/workflows/test.yml?query=branch%3Amaster)[![Total downloads](https://camo.githubusercontent.com/0393d2c91262e5552e41aa4ac2b565ae1679e3b85a2ced51062114a91f867656/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7365626173746961616e6c7563612f6c61726176656c2d6368616e67656c6f672e7376673f636f6c6f723d627269676874677265656e)](https://packagist.org/packages/sebastiaanluca/laravel-changelog)[![Total stars](https://camo.githubusercontent.com/a150649f307793b8abe4f6eb8f067c72ef2e45687622142a83ce357310c40267/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f7365626173746961616e6c7563612f6c61726176656c2d6368616e67656c6f672e7376673f636f6c6f723d627269676874677265656e)](https://github.com/sebastiaanluca/laravel-changelog)

[![Read my blog](https://camo.githubusercontent.com/0760b582e22202bd412feb64f5f87b6459f64a0b8ea5fdd24cbadf87df736177/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c696e6b2d626c6f672d6c69676874677265792e737667)](https://sebastiaanluca.com/blog)[![View my other packages and projects](https://camo.githubusercontent.com/5ce3a83ee0ec2b4ae47a99f67347c1d8e78582757eca80fe31c98e5bd0e2185a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c696e6b2d6f746865725f7061636b616765732d6c69676874677265792e737667)](https://packagist.org/packages/sebastiaanluca)[![Follow @sebastiaanluca on Twitter](https://camo.githubusercontent.com/bde346ed8efc8b2458386b36256c64e3fe010276f449b80fe4f663c4c8bbd83e/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f666f6c6c6f772f7365626173746961616e6c7563612e7376673f7374796c653d736f6369616c)](https://twitter.com/sebastiaanluca)[![Share this package on Twitter](https://camo.githubusercontent.com/cb820a0ecc9645168e33b03925d7f14691262ddbaeaf66a0a91697803d0cba2d/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f75726c2f687474702f736869656c64732e696f2e7376673f7374796c653d736f6369616c)](https://twitter.com/home?status=https%3A//github.com/sebastiaanluca/laravel-changelog%20via%20%40sebastiaanluca)

**Show your project's parsed Markdown changelog in your application.**

Requirements
------------

[](#requirements)

- PHP 8 or higher
- Laravel 8 or higher

Looking for support for earlier versions? Try out any of the previous package versions.

How to use
----------

[](#how-to-use)

Ensure you have a `CHANGELOG.md` file in the root of your project.

Secondly, register the routes by calling the appropriate method in your main routes file:

```
\SebastiaanLuca\Changelog\Changelog::routes();
```

This will enable you to visit the parsed changelog in your browser by visiting `https://example.com/changelog`.

By default, the changelog is cached. A good practice is to clear the cache during deployment by running:

```
php artisan cache:clear
```

Alternative use
---------------

[](#alternative-use)

If you don't wish to use the package's routing, you can get the parsed and cached changelog in your own controller:

```
$changelog = \SebastiaanLuca\Changelog\Changelog::getCachedChangelog();
```

Customization
-------------

[](#customization)

To customize a setting, first publish the configuration file and open `config/changelog.php`:

```
php artisan vendor:publish --tag="laravel-changelog (configuration)"
```

Here you can change the location of the log, the route name and URL, the view used to display the log, and if and how you want to cache it.

License
-------

[](#license)

This package operates under the MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
composer install
composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Sebastiaan Luca](https://github.com/sebastiaanluca)
- [All Contributors](../../contributors)

About
-----

[](#about)

My name is Sebastiaan and I'm a freelance Laravel developer specializing in building custom Laravel applications. Check out my [portfolio](https://sebastiaanluca.com) for more information, [my blog](https://sebastiaanluca.com/blog) for the latest tips and tricks, and my other [packages](https://packagist.org/packages/sebastiaanluca) to kick-start your next project.

Have a project that could use some guidance? Send me an e-mail at !

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~90 days

Recently: every ~132 days

Total

7

Last Release

1940d ago

Major Versions

0.4.1 → 1.0.02021-03-10

PHP version history (2 changes)0.1.0PHP ^7.3

1.0.0PHP ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/711940?v=4)[Sebastiaan Luca](/maintainers/sebastiaanluca)[@sebastiaanluca](https://github.com/sebastiaanluca)

---

Top Contributors

[![sebastiaanluca](https://avatars.githubusercontent.com/u/711940?v=4)](https://github.com/sebastiaanluca "sebastiaanluca (46 commits)")

---

Tags

changelogchangeslaravelphpupdateslaravelchangelog

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sebastiaanluca-laravel-changelog/health.svg)

```
[![Health](https://phpackages.com/badges/sebastiaanluca-laravel-changelog/health.svg)](https://phpackages.com/packages/sebastiaanluca-laravel-changelog)
```

###  Alternatives

[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

23.9k69.5k](/packages/grumpydictator-firefly-iii)[firefly-iii/data-importer

Firefly III Data Import Tool.

8015.8k](/packages/firefly-iii-data-importer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[ronasit/laravel-helpers

Provided helpers function and some helper class.

2085.6k30](/packages/ronasit-laravel-helpers)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1320.9k4](/packages/team-nifty-gmbh-tall-datatables)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
