mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
33 lines
991 B
TypeScript
33 lines
991 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { BitbucketTagsDatasource } from '../../datasource/bitbucket-tags';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import { PackagistDatasource } from '../../datasource/packagist';
|
|
import { updateArtifacts } from './artifacts';
|
|
import { extractPackageFile } from './extract';
|
|
import { getRangeStrategy } from './range';
|
|
import { updateLockedDependency } from './update-locked';
|
|
import { composerVersioningId } from './utils';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export {
|
|
extractPackageFile,
|
|
updateArtifacts,
|
|
getRangeStrategy,
|
|
updateLockedDependency,
|
|
};
|
|
|
|
export const url = 'https://getcomposer.org/doc';
|
|
export const categories: Category[] = ['php'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)([\\w-]*)composer\\.json$'],
|
|
versioning: composerVersioningId,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
BitbucketTagsDatasource.id,
|
|
GitTagsDatasource.id,
|
|
PackagistDatasource.id,
|
|
];
|