{"id":20812436,"url":"https://github.com/markwalet/laravel-changelog","last_synced_at":"2026-04-02T14:04:23.696Z","repository":{"id":35062003,"uuid":"202197691","full_name":"markwalet/laravel-changelog","owner":"markwalet","description":"A Laravel package that prevents merge conflicts on your changelog file.","archived":false,"fork":false,"pushed_at":"2026-03-26T19:39:18.000Z","size":156,"stargazers_count":18,"open_issues_count":6,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-03-27T07:46:31.777Z","etag":null,"topics":["changelog","laravel","php","php-package"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/markwalet.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"markwalet","custom":["https://www.paypal.me/markwalet"]}},"created_at":"2019-08-13T17:57:06.000Z","updated_at":"2026-03-26T18:40:18.000Z","dependencies_parsed_at":"2025-05-07T10:56:12.953Z","dependency_job_id":null,"html_url":"https://github.com/markwalet/laravel-changelog","commit_stats":{"total_commits":84,"total_committers":1,"mean_commits":84.0,"dds":0.0,"last_synced_commit":"e40aef8c014bcae606575b967acfd145bd424604"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/markwalet/laravel-changelog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwalet%2Flaravel-changelog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwalet%2Flaravel-changelog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwalet%2Flaravel-changelog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwalet%2Flaravel-changelog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markwalet","download_url":"https://codeload.github.com/markwalet/laravel-changelog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markwalet%2Flaravel-changelog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31307468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["changelog","laravel","php","php-package"],"created_at":"2024-11-17T20:54:28.777Z","updated_at":"2026-04-02T14:04:23.689Z","avatar_url":"https://github.com/markwalet.png","language":"PHP","funding_links":["https://github.com/sponsors/markwalet","https://www.paypal.me/markwalet"],"categories":[],"sub_categories":[],"readme":"# Laravel Changelog\n\n[![Build Status](https://github.com/markwalet/laravel-changelog/workflows/tests/badge.svg)](https://github.com/markwalet/laravel-changelog/actions)\n[![Total Downloads](https://img.shields.io/packagist/dt/markwalet/laravel-changelog)](https://packagist.org/packages/markwalet/laravel-changelog)\n[![Latest Stable Version](https://img.shields.io/packagist/v/markwalet/laravel-changelog)](https://packagist.org/packages/markwalet/laravel-changelog)\n[![License](https://img.shields.io/packagist/l/markwalet/laravel-changelog)](https://packagist.org/packages/markwalet/laravel-changelog)\n\nA Laravel package that prevents merge conflicts on your changelog file.\n\nIt enables you to manage your changes by storing them in separate files based on the branch you are currently in. This makes sure that you are not working in the same file as other developers in your team.\n\n## Installation\nYou can install this package with composer:\n\n```shell\ncomposer require markwalet/laravel-changelog\n```\n\nThe package supports PHP 8.2+ and Laravel 12+.\n\nLaravel uses package auto-discovery, so you don't have to register the service provider. If you want to register the service provider manually, add the following line to your `config/app.php` file:\n\n```php\nMarkWalet\\Changelog\\ChangelogServiceProvider::class\n```\n\nAfter installation, verify and change the config for your specific needs and run `php artisan changelog:install`. This creates a folder where all the changes will be stored in. This defaults to `base_path('.changes')`.\n\n## Usage\n\nThe main functionality of this package consists of 6 commands:\n\n- `php artisan changelog:add {--type=} {--message=}` (Add a change to the current feature entry)\n- `php artisan changelog:list` (Show a list of changes for all versions)\n- `php artisan changelog:unreleased` (Show a list of unreleased changes)\n- `php artisan changelog:current` (Show a list of unreleased changes for your current branch)\n- `php artisan changelog:release` (Move all unreleased changes to a new version)\n- `php artisan changelog:generate {--dry-run} {--path=}` (Generate a markdown file based on your changes. The path option can be empty)\n\n## Configuration\n\nThe default configuration is defined in `changelog.php`. If you want to edit this file you can copy it to your config folder by using the following command:\n```shell\nphp artisan vendor:publish --provider=\"MarkWalet\\Changelog\\ChangelogServiceProvider\"\n```\n\nWhen you publish these vendor assets, you can also edit the default template that is used when generating the changelog markdown file. The template file can be found in `resources/views/vendor/changelog/changelog.blade.php`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkwalet%2Flaravel-changelog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkwalet%2Flaravel-changelog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkwalet%2Flaravel-changelog/lists"}