mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00

Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com> Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Rhys Arkins <rhys@arkins.net>
32 lines
1,003 B
TypeScript
32 lines
1,003 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 = {
|
|
managerFilePatterns: ['/(^|/)([\\w-]*)composer\\.json$/'],
|
|
versioning: composerVersioningId,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
BitbucketTagsDatasource.id,
|
|
GitTagsDatasource.id,
|
|
PackagistDatasource.id,
|
|
];
|