CONTRIBUTING.md 773 B

Contributing

We love pull requests from everyone.If you'd like to contribute, please read the following:

Fork, then clone the repo:

git clone git@github.com:your-username/ImageWorkshop.git

Set up your machine:

composer install

Make sure the tests pass:

vendor/bin/phpunit

Make your change. Add tests for your change. Make the tests pass:

vendor/bin/phpunit

Fix the code style using PHP-CS-Fixer:

vendor/bin/php-cs-fixer fix --config=.php_cs .

Push to your fork and submit a pull request.

At this point you're waiting on us. We may suggest some changes or improvements or alternatives.

Some things that will increase the chance that your pull request is accepted:

  • Write tests.
  • Follow our style guide.
  • Write a good commit message.