mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
15 lines
521 B
TypeScript
15 lines
521 B
TypeScript
import { LANGUAGE_PHP } from '../../constants/languages';
|
|
import { updateArtifacts } from './artifacts';
|
|
import { extractPackageFile } from './extract';
|
|
import { getRangeStrategy } from './range';
|
|
import { composerVersioningId } from './utils';
|
|
|
|
const language = LANGUAGE_PHP;
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export { extractPackageFile, updateArtifacts, language, getRangeStrategy };
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)([\\w-]*)composer.json$'],
|
|
versioning: composerVersioningId,
|
|
};
|