ion/versioning

A small library that functions as the base to all ION packages, intended to handle basic package and versioning functionality.

v1.0.0 2024-04-17 14:32 UTC

This package is auto-updated.

Last update: 2024-09-17 16:04:37 UTC


README

License: LGPL v3

A small library that functions as the base to all ION packages, intended to handle basic package versioning functionality.

Getting Started

###As an included library, with Composer:

Make sure Composer is installed - if not, you can get it from here.

First, you need to add ion/versioning as a dependency in your composer.json file.

To use the current stable version, add the following to download it straight from here:

"require": {
    "php": ">=7.4",
    "ion/packaging": "^1.0.0",
}

To use the bleeding edge (development) version, add the following:

"require": {
    "php": ">=7.4",
    "ion/packaging": "dev-default",	
},
"repositories": {
    {
      "type": "vcs",
      "url": "https://github.com/ion-digital/ion-php-packaging.git"
    }
}

Then run the following in the root directory of your project:

php composer.phar install

Prerequisites

  • Composer (optional)

Built With

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

License

This project is licensed under the LGPL-3.0 License - see the LICENSE.md file for details.