Please be considerate that:
- Commit messages should follow angular standard
You may need to fork this project in GitHub.
git clone [email protected]:adhocore/phint.git
# OR if you have a fork
# git clone [email protected]:<your_github_handle>/phint.git
cd phint
# Create a new branch
git checkout -b $branch_name
# Install deps
composer install -o
# Open phint in IDE
subl phint
# ... and do the needful
# Optionally run the lint
for P in src tests; do find $P -type f -name '*.php' -exec php -l {} \;; done
# ... and phpcs fixer or stuffs like that!
# Run tests
vendor/bin/phpunit --coverage-text
Everything looking good?
# Commit your stuffs
git add $file ...$files
git commit -m "..."
# Push 'em
git push origin HEAD
Now goto GitHub, select your branch and create PR.
You have to wait. You have to address change requests.
Thank you for contribution!