PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Marco Cesarato   PHP Conventional Changelog   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Conventional Changelog
Generate changelog and release notes from commit
Author: By
Last change: chore(composer): add scripts for changelog and release
Date: 3 years ago
Size: 1,595 bytes
 

Contents

Class file image Download
{ "name": "marcocesarato/php-conventional-changelog", "description": "Generate changelogs and release notes from a project's commit messages and metadata and automate versioning with semver.org and conventionalcommits.org", "type": "library", "license": "GPL-3.0-or-later", "minimum-stability": "stable", "bin": [ "conventional-changelog" ], "keywords": [ "conventional-changelog", "readme", "generation", "git", "php", "conventional-commit", "conventional-commits", "conventionalcommits", "changelog", "history", "tag", "commit", "commits", "conventional", "convention", "conventional-changelog-preset" ], "authors": [ { "name": "Marco Cesarato", "email": "cesarato.developer@gmail.com" } ], "autoload": { "psr-4": { "ConventionalChangelog\\": "src/" } }, "scripts": { "changelog": "php conventional-changelog", "check-cs": "php vendor/bin/php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.php_cs", "fix-cs": "php-cs-fixer fix --config=.php_cs --verbose", "release": "php conventional-changelog --commit", "release:patch": "php conventional-changelog --commit --patch", "release:minor": "php conventional-changelog --commit --minor", "release:major": "php conventional-changelog --commit --major" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.17" }, "require": { "php": ">=7.1.3", "symfony/console": "^4 || ^5" } }