package-url/packageurl-php

Builder and parser based on the package URL (purl) specification.

Fund package maintenance!
jkowalleck

Installs: 1 028 404

Dependents: 2

Suggesters: 0

Security: 0

Stars: 9

Watchers: 2

Forks: 4

Open Issues: 9

1.1.2 2024-02-05 11:20 UTC

This package is auto-updated.

Last update: 2025-04-02 17:03:30 UTC


README

shield_gh-workflow-test shield_packagist-version shield_license

A parser and builder based on package url spec, implemented in PHP.

License: MIT

Note

PackageURL is in the process of review, refinement, and standardization - which braucht changes in the spec. This library might be no longer compliant to latest PURL spec, and will not receive an update until the standardization process is finished and a stable spec version was released.

Install

composer require package-url/packageurl-php

Usage

see also the examples.

<?php

use PackageUrl\PackageUrl;

$purl = (new PackageUrl('composer', 'console'))
    ->setNamespace('symfony')
    ->setVersion('6.3.8')
    ->setQualifiers([
        PackageUrl::QUALIFIER_VCS_URL => 'git+https://github.com/symfony/console.git@v6.3.8',
    ]);

$purlString = $purl->toString();

// string(96) "pkg:composer/symfony/console@6.3.8?vcs_url=git%2Bhttps://github.com/symfony/console.git%40v6.3.8"
var_dump($purlString);

// string(96) "pkg:composer/symfony/console@6.3.8?vcs_url=git%2Bhttps://github.com/symfony/console.git%40v6.3.8"
var_dump((string) $purl);

$purl2 = PackageUrl::fromString($purlString);
// bool(true)
var_dump($purl == $purl2);

Contributing

Feel free to open pull requests.
See the contribution docs for details.