Rename to "scripts-descriptions"

main
Mathias Brodala 7 years ago
parent ad56577223
commit 8424235fac

@ -282,7 +282,7 @@ You can set custom script descriptions with the following in your `composer.json
```json ```json
{ {
"scripts-description": { "scripts-descriptions": {
"test": "Run all tests!" "test": "Run all tests!"
} }
} }

@ -447,7 +447,7 @@
} }
} }
}, },
"scripts-description": { "scripts-descriptions": {
"type": ["object"], "type": ["object"],
"description": "Descriptions for scripts listeners, shown in console help.", "description": "Descriptions for scripts listeners, shown in console help.",
"additionalProperties": { "additionalProperties": {

@ -230,10 +230,10 @@ class Application extends BaseApplication
} else { } else {
$description = null; $description = null;
if (isset($composer['scripts-description'][$script])) { if (isset($composer['scripts-descriptions'][$script])) {
$description = $composer['scripts-description'][$script]; $description = $composer['scripts-descriptions'][$script];
} elseif (isset($composer['extra']['scripts-description'][$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]; $description = $composer['extra']['scripts-description'][$script];
} }

Loading…
Cancel
Save