Skip to content

Commit ca6cadb

Browse files
Cleanup
1 parent d86acc5 commit ca6cadb

11 files changed

+21
-496
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
before_script:
1313
- sh -c "if [ '$INSTALL_PHP_INVOKER' = '1' ]; then composer require --dev --prefer-source phpunit/php-invoker:\>=1.2.0; else composer install --dev --prefer-source; fi"
1414

15-
script: ./phpunit.php --configuration ./build/travis-ci.xml
15+
script: ./phpunit --configuration ./build/travis-ci.xml
1616

1717
matrix:
1818
allow_failures:

CONTRIBUTING.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Contributing to PHPUnit
2-
=======================
1+
# Contributing to PHPUnit
32

43
Contributions to PHPUnit, its related modules, and its documentation are always welcome. You make our lives easier by sending us your contributions through GitHub pull requests.
54

@@ -9,21 +8,16 @@ We are trying to keep backwards compatibility breaks in PHPUnit to an absolute m
98

109
Due to time constraints, we are not always able to respond as quickly as we would like. Please do not take delays personal and feel free to remind us here or on IRC if you feel that we forgot to respond.
1110

12-
Using PHPUnit From a Git Checkout
13-
---------------------------------
11+
## Using PHPUnit From a Git Checkout
1412

1513
The following commands can be used to perform the initial checkout of PHPUnit:
1614

1715
git clone git://github.com/sebastianbergmann/phpunit.git
1816
cd phpunit
1917

20-
To retrieve PHPUnit's dependencies, you can use [Composer](http://getcomposer.org/download/). If you do not have Composer installed, you can download the latest PHAR with the following command:
18+
Retrieve PHPUnit's dependencies using [Composer](http://getcomposer.org/):
2119

22-
curl -O http://getcomposer.org/composer.phar
23-
24-
Once Composer is installed, you can fetch PHPUnit's dependencies with the following command:
25-
26-
php composer.phar install --dev
27-
28-
The `phpunit.php` script can be used to invoke the PHPUnit test runner.
20+
wget http://getcomposer.org/composer.phar
21+
php composer.phar install
2922

23+
The `phpunit` script can be used to invoke the PHPUnit test runner.

PHPUnit/Autoload.php

-265
This file was deleted.

0 commit comments

Comments
 (0)