Packagist API Client - v1.0.0
    Preparing search index...

    Interface SecurityAdvisory

    Security advisory entry returned by Packagist.

    interface SecurityAdvisory {
        advisoryId: string;
        packageName: `${string}/${string}`;
        remoteId?: string;
        title: string;
        link?: string;
        cve?: string | null;
        affectedVersions: string;
        source?: string;
        sources?: SecurityAdvisorySource[];
        reportedAt?: string;
        composerRepository?: string;
        severity?: string | null;
    }
    Index

    Properties

    advisoryId: string

    Unique Packagist advisory ID.

    packageName: `${string}/${string}`

    Affected package name.

    remoteId?: string

    Deprecated remote source ID. Prefer sources.

    title: string

    Advisory title.

    link?: string

    Advisory or disclosure URL.

    cve?: string | null

    CVE identifier when available.

    affectedVersions: string

    Composer constraint describing affected versions.

    source?: string

    Deprecated source name. Prefer sources.

    Advisory sources.

    reportedAt?: string

    Report date.

    composerRepository?: string

    Composer repository containing the package.

    severity?: string | null

    CVSS severity when available.