Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 954 Bytes

Contributing.md

File metadata and controls

40 lines (28 loc) · 954 Bytes

ClientServerExamplesChangelog • Contributing

Websocket: Contributing

Everyone is welcome to help out! But to keep this project sustainable, please ensure your contribution respects the requirements below.

PR Requirements

Requirements on pull requests;

  • All tests MUST pass.
  • Code coverage MUST remain at 100%.
  • Code MUST adhere to PSR-1 and PSR-12 code standards.

Dependency management

Install or update dependencies using Composer.

# Install dependencies
make install

# Update dependencies
make update

Code standard

This project uses PSR-1 and PSR-12 code standards.

# Check code standard adherence
make cs-check

Unit testing

Unit tests with PHPUnit.

# Run unit tests
make test