Thank you for your interesting in contributing with LaraDumps.
If you have any questions, do not hesitate to reach the community in the repository Discussions tab.
You can fix a bug or even submit a feature. Note that sometimes it will be necessary to send a PR to both repositories
1 .Fork
git clone https://github.com/laradumps/laradumps.git && cd laradumps
Install all dependencies with composer and NPM.
composer install
Then run:
yarn
- Create a new branch
Create a new branch specifying feature
, fix
, enhancement
.
git checkout -b feature/my-new-feature
- Code and check your work
Write your code and, when you are done, run the CS Fix:
composer fix
Run tests and static analysis:
composer verify
- Tests
Including tests is not mandatory, but if you can write tests, please consider doing it.
- Commit
Please send clean and descriptive commits.
- Pull Request
Open a Pull Request (PR) detailing your changes and motivations. Please make only one change per Pull Request.
If you never wrote a PR before, see this excellent example by @vs0uz4 for inspiration.
💓 Thank you for contributing!