Contributing
First off, thanks for taking the time to contribute to HyperFlow!
How to Contribute
- Reporting Bugs: Use GitHub Issues.
- Feature Requests: Check existing issues before opening a new one.
- Pull Requests:
- Fork the repo.
- Create a new branch.
- Ensure code passes lints (if applicable).
- Submit the PR!
Environment Setup
To begin hacking on the local components (GenerateLoopConfig, the local DOMs and executors):
# Clone the repository
git clone https://github.com/lablnet/hyperflow-php.git
cd hyperflow-php
# Install dependencies
composer install
Linting
We use php-cs-fixer to maintain a very clean code base. Formatting must be identical to the internal styles. Run the linting targets manually before pushing code:
composer run lint
