PHPackages                             imarcom/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. imarcom/laravel-changelog

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

imarcom/laravel-changelog
=========================

A Laravel 5 package to create change-logs

1940[3 PRs](https://github.com/imarcom/laravel-changelog/pulls)PHP

Since Jun 14Pushed 4y ago4 watchersCompare

[ Source](https://github.com/imarcom/laravel-changelog)[ Packagist](https://packagist.org/packages/imarcom/laravel-changelog)[ RSS](/packages/imarcom-laravel-changelog/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (5)Used By (0)

Laravel ChangeLog
=================

[](#laravel-changelog)

A Laravel 5 package to create markdown change-logs.

This allow to create individual changelog files which will be merged into a single file or even outputted in console or in application code for display.

The outputted markdown file will look like this:

```
# ChangeLog

## [Unreleased]
### ADDED
- some new thing

##[1.0.1] - 2018-11-25
### CHANGED
- some thing
- another thing
### ADDED
- some thing
- some thing again

## [1.0.0] - 2018-01-01
### ADDED
- some old thing
```

Installation
------------

[](#installation)

You can install this package via composer using this command:

```
composer require imarcom/laravel-changelog
```

The package will automatically register itself.

You can publish the config-file with:

```
php artisan vendor:publish --provider="Imarcom\LaravelChangeLog\ChangeLogServiceProvider"
```

### Configuration

[](#configuration)

```
