Azure composer packages support!

You have private azure git repository, and You want to use it in composer?

Feature 01

No Plugins!

You don't have to install any additional plugins for Your app or composer!

Feature 02

Git tags support!

Use git tags to versioning your package!

Feature 03

Team friendly!

No one form your teem don't have to install anything new!

Feature 04

Easy package publish!

For publish new version You need only one call to API!

How it works?

Azure composer packages works as proxy server between Your azure git repository and Your composer.json file.

Setting up composer.json file:
{
    "repositories": [
        {
            "type": "composer",
            "url": "https://api.php-composer-azure.com/api/composer/YOUR-TOKEN/packages.json"
        }
    ],
    "require": {
        "vendor-name/package-name": "^1.5",
        "monolog/monolog": "^3.2"
    }
}
Publish package:
curl -X POST -d 'repositoryName=repository-name' -d 'version=1.5.0' https://api.php-composer-azure.com/api/package/YOUR-TOKEN/publish

Still not convinced to use it?