Skip to content

Commit 51e086a

Browse files
committed
Merge pull request composer#173 from miklos-martin/build-help-message-readability
Build help message readability
2 parents 6b53734 + c3fdc06 commit 51e086a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/Composer/Satis/Command/BuildCommand.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -63,33 +63,33 @@ protected function configure()
6363
6464
The json config file accepts the following keys:
6565
66-
- "repositories": defines which repositories are searched
66+
- <info>"repositories"</info>: defines which repositories are searched
6767
for packages.
68-
- "output-dir": where to output the repository files
68+
- <info>"output-dir"</info>: where to output the repository files
6969
if not provided as an argument when calling build.
70-
- "require-all": boolean, if true, all packages present
70+
- <info>"require-all"</info>: boolean, if true, all packages present
7171
in the configured repositories will be present in the
7272
dumped satis repository.
73-
- "require": if you do not want to dump all packages,
73+
- <info>"require"</info>: if you do not want to dump all packages,
7474
you can explicitly require them by name and version.
75-
- "minimum-stability": sets default stability for packages
75+
- <info>"minimum-stability"</info>: sets default stability for packages
7676
(default: dev), see
7777
http://getcomposer.org/doc/04-schema.md#minimum-stability
78-
- "require-dependencies": if you mark a few packages as
78+
- <info>"require-dependencies"</info>: if you mark a few packages as
7979
required to mirror packagist for example, setting this
8080
to true will make satis automatically require all of your
8181
requirements' dependencies.
82-
- "require-dev-dependencies": works like require-dependencies
82+
- <info>"require-dev-dependencies"</info>: works like require-dependencies
8383
but requires dev requirements rather than regular ones.
84-
- "config": all config options from composer, see
84+
- <info>"config"</info>: all config options from composer, see
8585
http://getcomposer.org/doc/04-schema.md#config
86-
- "output-html": boolean, controls whether the repository
86+
- <info>"output-html"</info>: boolean, controls whether the repository
8787
has an html page as well or not.
88-
- "name": for html output, this defines the name of the
88+
- <info>"name"</info>: for html output, this defines the name of the
8989
repository.
90-
- "homepage": for html output, this defines the home URL
90+
- <info>"homepage"</info>: for html output, this defines the home URL
9191
of the repository (where you will host it).
92-
- "twig-template": Location of twig template to use for
92+
- <info>"twig-template"</info>: Location of twig template to use for
9393
building the html output.
9494
EOT
9595
)

0 commit comments

Comments
 (0)