Download the PHP package mogic/changelog-helper without Composer

On this page you can find all versions of the php package mogic/changelog-helper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package changelog-helper

Changelog-Helper

Changelog-Helper is a set of commandline utilities for adding and releasing new CHANGELOG.md entries as defined by keepachangelog.com definition.

It helps with the creation of correct entries, version numbers, tags and the table of contents.

Static Analysis Tests Total Downloads Latest Stable Version


Documentation

The helper is built on top of the Laravel Zero components and uses git as an internal command.

Install

Via Composer

composer global require mogic/changelog-helper

To get a link index in your CHANGELOG, you have to set a env variable. Add it in your .env or set it global:

CHANGELOG_UNRELEASED_LINK=https://github.com/mogic-le/changelog-helper/compare/develop...main

Usage of commands

Add entry

You can run a one-liner using the add command:

changelog-helper add [added,changed,deprecated,fixed,...] This is a new entry line

Or you can use the same command in a interactive mode:

changelog-helper add

Add entry based on commits

You can use the same command in a interactive mode:

changelog-helper add-commit

Add new release

The release command creates a new release, based on your optional unreleased changes.

Optional: it commits the CHANGELOG.md changes and creates a tag on top of the last commit.

You can use run a one-liner:

changelog-helper release [major|minor|patch] 1|0

Or you can use the same command in a interactive mode:

changelog-helper release

Environmet variables

Build & release new version

To build a new release version, we have to create the build with the release tag to create after.

./changelog-helper app:build changelog-helper --build-version=1.x.x
git add ./builds/changelog-helper
./changelog-helper add added Added new release build
git add ./builds/changelog-helper
git add ./CHANGELOG.md
./changelog-helper release minor 1.x.x
git push && git git push --tags

Author

Changelog-Helper was created by Stefan Berger from MOGIC.

License

Changelog-Helper is an open-source software licensed under the MIT license.

Tests

run ./vendor/bin/pest


All versions of changelog-helper with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mogic/changelog-helper contains the following files

Loading the files please wait ....