Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.5 KB

File metadata and controls

54 lines (32 loc) · 1.5 KB

Contributing to Zero Bounce PHP SDK

Thank you for your interest in contributing. This document explains how to get set up and submit changes.

Code of Conduct

By participating in this project, you agree to uphold our Code of Conduct.

Getting Started

See the README for prerequisites, setup, and how to run tests.

How to Contribute

Reporting Bugs

Open an issue and include:

  • Environment details (PHP version, OS)
  • Steps to reproduce
  • Expected vs actual behavior
  • Relevant code or error messages

Suggesting Changes

  • Check existing issues and pull requests first.
  • Open an issue to discuss larger changes or API design before coding.

Submitting Changes

  1. Fork the repository and create a branch from main:

    git checkout -b feature/your-feature-name
  2. Make your changes and add or update tests where relevant.

  3. Run the test suite (see README) before submitting.

  4. Commit with a clear message (e.g. Add X, Fix Y).

  5. Push your branch and open a Pull Request against main.

  6. In the PR description, briefly explain what changed and why. Link any related issues.

Maintainers will review and may request changes. Once approved, your PR can be merged.

Questions

Thanks for contributing.