Turso welcomes contributions from the community. This manual provides guidelines for contributing to libsql-php
SDK.
Make sure to join us on Discord — (#libsql-php
channel) to discuss your ideas and get help.
- PHP 8.3 or higher
- Composer
- Fork and clone the repository
- Install dependencies using
composer install
- Create a new branch for your feature or bug fix:
git switch -c my-new-feature
- Make changes and commit them with a clear commit message
- Push your changes to your fork
git push origin my-new-feature
- Open a Pull Request on the main repository
To run the test suite, use the following command:
composer test
This will execute PHPUnit tests located in the tests directory.