~canonical-sysadmins/wordpress/openstack-objectstorage-k8s

« back to all changes in this revision

Viewing changes to vendor/phpunit/phpunit/CONTRIBUTING.md

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Contributing to PHPUnit
 
2
 
 
3
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.
 
4
 
 
5
Pull requests for bug fixes must be based on the current stable branch whereas pull requests for new features must be based on `master`.
 
6
 
 
7
We are trying to keep backwards compatibility breaks in PHPUnit to an absolute minimum. Please take this into account when proposing changes.
 
8
 
 
9
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.
 
10
 
 
11
## Using PHPUnit From a Git Checkout
 
12
 
 
13
The following commands can be used to perform the initial checkout of PHPUnit:
 
14
 
 
15
    git clone git://github.com/sebastianbergmann/phpunit.git
 
16
    cd phpunit
 
17
 
 
18
Retrieve PHPUnit's dependencies using [Composer](http://getcomposer.org/):
 
19
 
 
20
    wget http://getcomposer.org/composer.phar
 
21
    php composer.phar install
 
22
 
 
23
The `phpunit` script can be used to invoke the PHPUnit test runner.