Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 964 Bytes

CONTRIBUTING.md

File metadata and controls

47 lines (31 loc) · 964 Bytes

CONTRIBUTING

Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.

Process

  1. Fork the project
  2. Create a new branch
  3. Code, test, commit and push
  4. Open a pull request detailing your changes.

Guidelines

  • Please follow the PSR-12 Coding Style Guide, enforced by StyleCI.
  • Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
  • You may need to rebase to avoid merge conflicts.
  • Please remember that we follow SemVer.

Setup

Clone your fork, then install the dependencies:

    composer update

Tests

Run all tests:

    composer test

Static analysis:

    composer test:phpstan

PHPUnit tests:

    composer test:phpunit