Contributions to Respect\Relational are always welcome. You make our lives easier by sending us your contributions through GitHub pull requests.
Pull requests for bug fixes must be based on the current stable branch whereas
pull requests for new features must be based on master
.
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, on IRC, or on Gitter if you feel that we forgot to respond.
The following commands can be used to perform the initial checkout of Respect\Relational:
git clone git://github.com/Respect/Relational.git
cd Relational
Retrieve Respect\Relational's dependencies using Composer:
composer install
After run composer install
on the library's root directory you must run PHPUnit.
You can test the project using the commands:
$ vendor/bin/phpunit
You can test the project using the commands:
> vendor\bin\phpunit
No test should fail.
You can tweak the PHPUnit's settings by copying phpunit.xml.dist
to phpunit.xml
and changing it according to your needs.
We are trying to follow the PHP-FIG's standards, so when you send us a pull request, be sure you are following them.