# Contributing
We are happy to see you contributing into our ecosystem.
Let's picture you woud like to improve following repository contributte/bare.
- Clone particular repository,
git clone git@github.com:contributte/bare.git
. - Create a new branch
git checkout -b feature/foobar
. -
Install dependencies.
- PHP
composer install
. - NPM
npm install
.
- PHP
-
Discover Makefile file.
- Check codestyle
make cs
. - Repair codestyle
make csf
. - Run phpstan
make phpstan
. - Run tests
make tests
. - Calculate coverage
make coverage
.
- Check codestyle
- Change the code.
- Commit all changes
git add .
&git commit -a "Feature: added new foobar"
. - Push the new branch
git push origin feature/foobar
. - Open PR at particular repository contributte/bare/pulls.
- Profit and glory!