/** * Composer package detector and reader for package-compatibility discovery. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Composer package detector. * * Scans `composer.json` in the project directory and extracts dependencies * from `require` and `require-dev`. * * @experimental This API is unstable and may change without notice. */ export declare const composerDetector: PackageDetector; /** * Composer package reader. * * Reads `vendor///composer.json` for each detected Composer * package and extracts the `"extra"."axm"` field containing recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const composerReader: PackageReader; //# sourceMappingURL=composer.d.ts.map