Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.
- Fork the project
- Create a new branch
- Code, test, commit and push
- Open a pull request detailing your changes.
- 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.
Clone your fork, then install the dev dependencies:
composer install
Lint your code:
composer lint
Run all tests:
composer test
Check code quality:
composer test:refactor
Check types:
composer test:types
Unit tests:
composer test:unit
If you have Docker installed, you can quickly get all dependencies for jql-builder in place using Docker files. Assuming you have the repository cloned, you may run the following commands:
docker compose build
to build the Docker imagedocker compose run --rm composer install
to install Composer dependenciesdocker compose run --rm composer test
to run the project tests and analysis tools
If you want to check things work against a specific version of PHP, you may include the PHP
build argument when building the image:
docker compose build --build-arg PHP=8.2
The default PHP version will always be the lowest version of PHP supported by jql-builder.