Download the PHP package jbuncle/php-autosemver without Composer

On this page you can find all versions of the php package jbuncle/php-autosemver. 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 php-autosemver

PHP Automatic Semantic Versioning Detector

Latest Version Packagist Version Docker Image Version (latest semver)

Build Status Packagist PHP Version Support LICENCE

Still in development, though largely stable

Manage your PHP library versions automatically

Automatically calculates the Semantic Version (SemVer) increment automatically based on source code changes between different Git references (revisions, tags, etc). This increment can then be used to determine the next version number (e.g. using the built in composer-version command).

Given two Git revisions (or a Working Copy), it will return MAJOR, MINOR or PATCH based on the changes between those revisions, based on Semantic Versioning rules (see https://semver.org/).

This allows the versioning process to be fully automated, where you would otherwise require a manual step to set the version would be required.

There are some edge cases, however automation is probably still better than manually maintaining semantic versions since such processes take time and are prone to human error.

Installation with Composer

Install globally:

Basic Usage

With composer

With docker

A "revision" can be a commit, tag, branch, HEAD, or WC (use working copy).

Examples

Compare your working copy to Git

Run from your the root of your project.

With composer global

With Docker

Useful for checking whether your commit introduces an API breaking change and print out the relevant differences.

Automatically tag current Git revision

Create a Git tag by comparing current revision to last tag.

With composer

With Docker

How it works

The tool parses all the PHP files and generates a list of all the possible, accessible signatures (including variations) found. For Git revisions it will traverse the Git commit directly using the Git CLI (therefore the git command is required).

Once generated for both sets of changes, it will compare the generated signature strings lists looking for removed signatures (MAJOR change), new signatures (MINOR change) or no signature changes (PATCH).

For example, the following in PHP code:

Would be interpreted into 3 unique signature variations:

Known Edge Cases

Improvements


All versions of php-autosemver with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
nikic/php-parser Version ^4@stable
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 jbuncle/php-autosemver contains the following files

Loading the files please wait ....