Rename to "scripts-descriptions"
parent
ad56577223
commit
8424235fac
|
@ -282,7 +282,7 @@ You can set custom script descriptions with the following in your `composer.json
|
|||
|
||||
```json
|
||||
{
|
||||
"scripts-description": {
|
||||
"scripts-descriptions": {
|
||||
"test": "Run all tests!"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -447,7 +447,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"scripts-description": {
|
||||
"scripts-descriptions": {
|
||||
"type": ["object"],
|
||||
"description": "Descriptions for scripts listeners, shown in console help.",
|
||||
"additionalProperties": {
|
||||
|
|
|
@ -230,10 +230,10 @@ class Application extends BaseApplication
|
|||
} else {
|
||||
$description = null;
|
||||
|
||||
if (isset($composer['scripts-description'][$script])) {
|
||||
$description = $composer['scripts-description'][$script];
|
||||
if (isset($composer['scripts-descriptions'][$script])) {
|
||||
$description = $composer['scripts-descriptions'][$script];
|
||||
} elseif (isset($composer['extra']['scripts-description'][$script])) {
|
||||
$io->writeError('<warning>You are using "scripts-description" in "extra" which is deprecated. Move "scripts-description" to the topmost level next to "scripts" instead.</warning>');
|
||||
$io->writeError('<warning>You are using "scripts-description" in "extra" which is deprecated. Use "scripts-descriptions" on the topmost level next to "scripts" instead.</warning>');
|
||||
$description = $composer['extra']['scripts-description'][$script];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue