Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the word "just" from documentation #7148

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/00-intro.md
Expand Up @@ -57,16 +57,16 @@ project, or globally as a system wide executable.

#### Locally

Installing Composer locally is a matter of just running the installer in your
Installing Composer locally is a matter of running the installer in your
project directory. See [the Download page](https://getcomposer.org/download/)
for instructions.

The installer will just check a few PHP settings and then download
The installer will check a few PHP settings and then download
`composer.phar` to your working directory. This file is the Composer binary. It
is a PHAR (PHP archive), which is an archive format for PHP which can be run on
the command line, amongst other things.

Now just run `php composer.phar` in order to run Composer.
Now run `php composer.phar` in order to run Composer.

You can install Composer to a specific directory by using the `--install-dir`
option and additionally (re)name it as well using the `--filename` option. When
Expand All @@ -78,7 +78,7 @@ following parameters:
php composer-setup.php --install-dir=bin --filename=composer
```

Now just run `php bin/composer` in order to run Composer.
Now run `php bin/composer` in order to run Composer.

#### Globally

Expand All @@ -105,7 +105,7 @@ mv composer.phar /usr/local/bin/composer
> **Note:** For information on changing your PATH, please read the
> [Wikipedia article](https://en.wikipedia.org/wiki/PATH_(variable)) and/or use Google.

Now just run `composer` in order to run Composer instead of `php composer.phar`.
Now run `composer` in order to run Composer instead of `php composer.phar`.

## Installation - Windows

Expand All @@ -115,7 +115,7 @@ This is the easiest way to get Composer set up on your machine.

Download and run
[Composer-Setup.exe](https://getcomposer.org/Composer-Setup.exe). It will
install the latest Composer version and set up your PATH so that you can just
install the latest Composer version and set up your PATH so that you can
call `composer` from any directory in your command line.

> **Note:** Close your current terminal. Test usage with a new terminal: This is
Expand Down
8 changes: 4 additions & 4 deletions doc/01-basic-usage.md
Expand Up @@ -44,7 +44,7 @@ about Packagist [below](#packagist), or read more about repositories
### Package Names

The package name consists of a vendor name and the project's name. Often these
will be identical - the vendor name just exists to prevent naming clashes. For
will be identical - the vendor name exists to prevent naming clashes. For
example, it would allow two different people to create a library named `json`.
One might be named `igorw/json` while the other might be `seldaek/json`.

Expand Down Expand Up @@ -86,7 +86,7 @@ versions, how versions relate to each other, and on version constraints.

## Installing Dependencies

To install the defined dependencies for your project, just run the
To install the defined dependencies for your project, run the
[`install`](03-cli.md#install) command.

```sh
Expand Down Expand Up @@ -196,7 +196,7 @@ includes PHP itself, PHP extensions and some system libraries.

* `ext-<name>` allows you to require PHP extensions (includes core
extensions). Versioning can be quite inconsistent here, so it's often
a good idea to just set the constraint to `*`. An example of an extension
a good idea to set the constraint to `*`. An example of an extension
package name is `ext-gd`.

* `lib-<name>` allows constraints to be made on versions of libraries used by
Expand Down Expand Up @@ -258,7 +258,7 @@ more information.
See also the docs on [optimizing the autoloader](articles/autoloader-optimization.md).

> **Note:** Composer provides its own autoloader. If you don't want to use that
> one, you can just include `vendor/composer/autoload_*.php` files, which return
> one, you can include `vendor/composer/autoload_*.php` files, which return
> associative arrays allowing you to configure your own autoloader.

&larr; [Intro](00-intro.md) | [Libraries](02-libraries.md) &rarr;