Skip to content

Contributing

Igor Sazonov edited this page Feb 4, 2026 · 1 revision

Contributing

Contributions are welcome! If you would like to contribute to the Marketstack PHP SDK, please follow these guidelines.

How to Contribute

  1. Fork the repository on GitHub.
  2. Create a new branch for your feature or bug fix:
    git checkout -b feature/AmazingFeature
  3. Commit your changes with a clear and descriptive commit message:
    git commit -m 'Add some AmazingFeature'
  4. Push your changes to your forked repository:
    git push origin feature/AmazingFeature
  5. Open a Pull Request to the main branch of the original repository.

Code Standards

Please ensure that your code adheres to the PSR-12 coding standard. You can use tools like PHP-CS-Fixer to automatically format your code.

Testing

All contributions must include tests. Please ensure that the existing test suite passes and that you add new tests for any new features or bug fixes. See the Testing guide for more information.

Clone this wiki locally