Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martin-lechene/changelog-generator
Make easy changelog with Laravel 11 & livewire
https://github.com/martin-lechene/changelog-generator
changelog changelog-generator generator laravel laravel11 livewire
Last synced: about 10 hours ago
JSON representation
Make easy changelog with Laravel 11 & livewire
- Host: GitHub
- URL: https://github.com/martin-lechene/changelog-generator
- Owner: martin-lechene
- Created: 2025-02-09T18:01:14.000Z (1 day ago)
- Default Branch: main
- Last Pushed: 2025-02-09T18:03:49.000Z (1 day ago)
- Last Synced: 2025-02-09T19:15:25.245Z (1 day ago)
- Topics: changelog, changelog-generator, generator, laravel, laravel11, livewire
- Language: PHP
- Homepage: https://changelog-generator.doganddev.eu
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Changelog Generator
A Laravel package to create and manage changelogs via a beautiful and dynamic interface.
## Features
- Modern UI with Tailwind CSS
- Livewire-powered dynamic interface
- Multi-language support (English and French)
- Version validation
- Markdown and JSON file storage
- Automatic Git integration (commit and push)
- Easy integration with Laravel 11
- Jetstream compatible## Requirements
- PHP 8.2 or higher
- Laravel 11.x
- Livewire 3.x
- Git (for automatic commits and pushes)## Installation
1. Add the repository to your `composer.json`:
```json
"repositories": [
{
"type": "path",
"url": "packages/doganddev/changelog-generator"
}
]
```2. Install the package:
```bash
composer require doganddev/changelog-generator
```3. Publish the configuration and assets:
```bash
php artisan vendor:publish --provider="DogAndDev\ChangelogGenerator\ChangelogGeneratorServiceProvider"
```## Usage
1. Access the changelog generator at `/admin/actions/create-changelog`
2. Fill in the version (format: X.X.X)
3. Select the release date
4. Add your changes in the appropriate sections:
- Added Features
- Changed Features
- Fixed Issues
5. Submit the form to generate the changelogThe changelog will be stored as both:
- A JSON file in `storage/app/changelogs/`
- A Markdown file (CHANGELOG.md) in your project root## Configuration
You can customize the package behavior in `config/changelog-generator.php`:
- Storage path for changelog files
- File format (supports both JSON and Markdown)
- Markdown file path
- Git configuration:
- Enable/disable Git integration
- Auto-commit changes
- Auto-push changes
- Customize commit message
- Configure remote and branch
- Route configuration (prefix and middleware)### Git Integration
The package can automatically commit and push your changelog changes. Configure Git settings in `config/changelog-generator.php`:
```php
'git' => [
'enabled' => true,
'auto_commit' => true,
'auto_push' => true,
'commit_message' => 'docs: update changelog for version {version}',
'remote' => 'origin',
'branch' => 'main',
],
```## Translations
The package comes with English and French translations. You can add more languages by creating new files in the `resources/lang/vendor/changelog-generator` directory.
## Security
The changelog generator routes are protected by the `auth` middleware by default. Make sure to configure your authentication as needed.
## License
This package is open-sourced software licensed under the MIT license.