mirror of
				https://github.com/shivammathur/setup-php.git
				synced 2025-10-31 15:26:23 +07:00 
			
		
		
		
	Fix composer version for prestissimo & composer-prefetcher to v1
This commit is contained in:
		| @ -283,11 +283,15 @@ export async function getSymfonyUri( | ||||
| export async function addComposer(tools_list: string[]): Promise<string[]> { | ||||
|   const regex_any = /^composer($|:.*)/; | ||||
|   const regex_valid = /^composer:?($|preview$|snapshot$|v?[1-2]$)/; | ||||
|   const regex_composer1_tools = /hirak|prestissimo|narrowspark|composer-prefetcher/; | ||||
|   const matches: string[] = tools_list.filter(tool => regex_valid.test(tool)); | ||||
|   let composer = 'composer'; | ||||
|   tools_list = tools_list.filter(tool => !regex_any.test(tool)); | ||||
|   switch (matches[0]) { | ||||
|     case undefined: | ||||
|   switch (true) { | ||||
|     case regex_composer1_tools.test(tools_list.join(' ')): | ||||
|       composer = 'composer:1'; | ||||
|       break; | ||||
|     case matches[0] == undefined: | ||||
|       break; | ||||
|     default: | ||||
|       composer = matches[matches.length - 1].replace(/v([1-2])/, '$1'); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shivam Mathur
					Shivam Mathur