Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,9 @@ Example
Install
-------

Just create a `composer.json` file and run the `php composer.phar install` command to install it:

```json
{
"require": {
"jakub-onderka/php-console-highlighter": "0.*"
}
}
```
Just run the following command to install it:

composer require --dev php-parallel-lint/php-console-highlighter
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding a semi-wildcard version to the command, prevents the version being fixed to the latest minor under 1.0.
Composer treats minors under 1.0 as majors, so updating it becomes more involved.

Suggested change
composer require --dev php-parallel-lint/php-console-highlighter
composer require --dev php-parallel-lint/php-console-highlighter:"0.*"


Usage
-------
Expand Down