Contributing
January 19, 2026 · View on GitHub
Thank you for considering contributing to Meilisearch! This document provides everything you need to know in order to contribute to Meilisearch PHP.
- Coding with AI
- Assumptions
- How to Contribute
- Development Workflow
- Git Guidelines
- Release Process (for internal team only)
Coding with AI
We accept the use of AI-powered tools (GitHub Copilot, ChatGPT, Claude, Cursor, etc.) for contributions, whether for code, tests, or documentation.
⚠️ However, transparency is required: if you use AI assistance, please mention it in your PR description. This helps maintainers during code review and ensure the quality of contributions.
What we expect:
- Disclose AI usage: A simple note like "Used GitHub Copilot for autocompletion" or "Generated initial test structure with ChatGPT" is sufficient.
- Specify the scope: Indicate which parts of your contribution involved AI assistance.
- Review AI-generated content: Ensure you understand and have verified any AI-generated code before submitting.
Assumptions
- You're familiar with GitHub and Pull Requests.
- You've read the Meilisearch documentation and this SDK's README.
- You know about the Meilisearch community. Please use this for help.
How to Contribute
- Make sure that the contribution you want to make is explained or detailed in a GitHub issue! Find an existing issue or open a new one.
- Once done, fork the meilisearch-php repository in your own GitHub account. Ask a maintainer if you want your issue to be checked before making a PR.
- Create a new Git branch.
- Review the Development Workflow section that describes the steps to maintain the repository.
- Make your changes on your branch. If you use AI tools during your work, remember to disclose it in your PR description (see Coding with AI).
- Submit the branch as a PR pointing to the
mainbranch of the main meilisearch-php repository.
Read more about Git guidelines below.
Development Workflow
Setup
You can set up your local environment natively or using docker, check out the docker-compose.yml.
Example of running all the checks with docker:
docker-compose run --rm package bash -c "composer install && composer test && composer lint && composer phpstan"
To install dependencies:
composer install
Tests and Linter
Each PR should pass the tests and the linter to be accepted.
# Tests
curl -L https://install.meilisearch.com | sh # download Meilisearch
./meilisearch --master-key=masterKey --no-analytics # run Meilisearch
composer test
# Linter (with auto-fix)
composer lint:fix
# Linter (without auto-fix)
composer lint
Git Guidelines
Git Branches
All changes must be made in a branch and submitted as PR. We do not enforce any branch naming style, but please use something descriptive of your changes.
Git Commits
As minimal requirements, your commit message should:
- be capitalized
- not finish by a dot or any other punctuation character (!,?)
- start with a verb so that we can read your commit message this way: "This commit will ...", where "..." is the commit message. e.g.: "Fix the home page button" or "Add more tests for create_index method"
We don't follow any other convention, but if you want to use one, we recommend this one.
GitHub Pull Requests
Some notes on GitHub PRs:
- Convert your PR as a draft if your changes are a work in progress: no one will review it until you pass your PR as ready for review.
The draft PR can be very useful if you want to show that you are working on something and make your work visible. - The branch related to the PR must be up-to-date with
mainbefore merging. This project uses Merge Queues to automatically enforce this requirement. - All PRs must be reviewed and approved by at least one maintainer.
- The PR title should be accurate and descriptive of the changes. The title of the PR will be indeed automatically added to the next release changelogs.
Release Process (for the internal team only)
Meilisearch tools follow the Semantic Versioning Convention.
Automated Changelogs
This project uses Release Drafter to automate changelog creation.
How to Publish the Release
⚠️ Before doing anything, make sure you got through the guide about Releasing an Integration.
Use our automation to update the version: click on Run workflow, and fill the appropriate version before validating. A PR updating the version in the src/Meilisearch.php file will be created.
Or do it manually:
Make a PR modifying the file src/Meilisearch.php with the right version.
const VERSION = 'X.X.X';
Once the changes are merged on main, you can publish the current draft release via the GitHub interface: on this page, click on Edit (related to the draft release) > update the description (be sure you apply these recommendations) > when you are ready, click on Publish release.
A WebHook will be triggered and push the package to Packagist.
Thank you for reading this through ❤️ We're excited to collaborate with you!