Skip to content

Commit 8ddd0dd

Browse files
1 parent 98b2b39 commit 8ddd0dd

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,10 @@ $ git clone git://github.com/sebastianbergmann/phpunit.git
3939
$ cd phpunit
4040
```
4141

42-
Retrieve PHPUnit's dependencies using [Composer](http://getcomposer.org/):
42+
Retrieve PHPUnit's dependencies using [Composer](https://getcomposer.org/):
4343

4444
```bash
45-
$ wget http://getcomposer.org/composer.phar
46-
47-
$ php composer.phar install
45+
$ composer install
4846
```
4947

5048
The `phpunit` script can be used to invoke the PHPUnit test runner:

phpunit

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ unset($file);
3939

4040
if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
4141
fwrite(STDERR,
42-
'You need to set up the project dependencies using the following commands:' . PHP_EOL .
43-
'wget http://getcomposer.org/composer.phar' . PHP_EOL .
44-
'php composer.phar install' . PHP_EOL
42+
'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
43+
' composer install' . PHP_EOL . PHP_EOL .
44+
'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
4545
);
4646

4747
die(1);

0 commit comments

Comments
 (0)