Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.91 KB

CONTRIBUTING.md

File metadata and controls

58 lines (38 loc) · 1.91 KB

Contributing to Laravel Migration AI

Thank you for considering contributing to the Laravel Migration AI package! We welcome contributions from the community to help improve this project.

How to Contribute

Reporting Issues

If you encounter any problems or have suggestions for improvements, please open an issue in the GitHub repository. Make sure to provide a clear description of the issue, along with any relevant details such as:

  • Steps to reproduce the issue
  • Expected and actual behavior
  • Any error messages or logs

Pull Requests

We love pull requests! Here’s how you can contribute:

  1. Fork the Repository: Click the "Fork" button on the top right of the repository page to create a personal copy of the repository.

  2. Clone Your Fork:

    git clone https://github.com/cedricLekene/laravel-migration-ai.git
    cd laravel-migration-ai
  3. Create a New Branch:

    git checkout -b feature/your-feature-name
  4. Make Your Changes: Implement your feature or fix the issue.

  5. Write Tests: If applicable, add tests to cover your changes to ensure everything works as expected.

  6. Commit Your Changes:

    git commit -m \"feat: add your feature description\"
  7. Push to Your Fork:

    git push origin feature/your-feature-name
  8. Open a Pull Request: Go to the original repository and click on "New Pull Request." Select your branch and submit the pull request. Provide a clear description of your changes and why they are needed.

Code Standards

  • Follow PSR-12 coding standards for PHP.
  • Write clear and concise commit messages.
  • Ensure that your code is well-documented and follows the existing style of the project.

License

By contributing to this project, you agree that your contributions will be licensed under the MIT License.

Thank you for your interest in contributing to Laravel Migration AI!