Remove superfluous override- prefix from download-url-method (#12297)
parent
103041802c
commit
b70b6bd070
|
@ -323,7 +323,7 @@
|
|||
"example": "my-extension-source",
|
||||
"default": null
|
||||
},
|
||||
"override-download-url-method": {
|
||||
"download-url-method": {
|
||||
"type": "string",
|
||||
"description": "If specified, this technique will be used to override the URL that PIE uses to download the asset. The default, if not specified, is composer-default.",
|
||||
"enum": ["composer-default", "pre-packaged-source"],
|
||||
|
|
|
@ -23,7 +23,7 @@ use Composer\Repository\RepositoryInterface;
|
|||
*
|
||||
* @phpstan-type AutoloadRules array{psr-0?: array<string, string|string[]>, psr-4?: array<string, string|string[]>, classmap?: list<string>, files?: list<string>, exclude-from-classmap?: list<string>}
|
||||
* @phpstan-type DevAutoloadRules array{psr-0?: array<string, string|string[]>, psr-4?: array<string, string|string[]>, classmap?: list<string>, files?: list<string>}
|
||||
* @phpstan-type PhpExtConfig array{extension-name?: string, priority?: int, support-zts?: bool, support-nts?: bool, build-path?: string|null, override-download-url-method?: string, os-families?: non-empty-list<non-empty-string>, os-families-exclude?: non-empty-list<non-empty-string>, configure-options?: list<array{name: string, description?: string}>}
|
||||
* @phpstan-type PhpExtConfig array{extension-name?: string, priority?: int, support-zts?: bool, support-nts?: bool, build-path?: string|null, download-url-method?: string, os-families?: non-empty-list<non-empty-string>, os-families-exclude?: non-empty-list<non-empty-string>, configure-options?: list<array{name: string, description?: string}>}
|
||||
*/
|
||||
interface PackageInterface
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue