PHP Classes

File: CONTRIBUTING.md

Recommend this page to a friend!
  Classes of Angel Campos   PHP Application Skeleton   CONTRIBUTING.md   Download  
File: CONTRIBUTING.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP Application Skeleton
Base skeleton to build new packages
Author: By
Last change: Update of CONTRIBUTING.md
Date: 1 year ago
Size: 933 bytes
 

Contents

Class file image Download

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 ensure the coding style running `composer lint`.
  • 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 dev dependencies:

composer install

Lint

Lint your code:

composer lint

Tests

Run all tests:

composer test

Integration tests:

composer test:integration

Unit tests:

composer test:unit