Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.78 KB

CONTRIBUTING.md

File metadata and controls

54 lines (36 loc) · 1.78 KB

Contributing to Laravel Auto Blade

Thank you for considering contributing to Laravel Auto Blade! Your help is greatly appreciated. Here are some guidelines to get you started:

How to Contribute

  1. Fork the Repository: Start by forking the repository to your GitHub account.

  2. Clone the Repository: Clone your forked repository to your local machine.

    git clone https://github.com/your-username/Laravel-auto-blade.git
  3. Create a Branch: Create a new branch for your feature or bugfix.

    git checkout -b feature/your-feature-name
  4. Make Changes: Make your changes to the codebase. Ensure your code follows the project's coding standards.

  5. Commit Changes: Commit your changes with a clear and concise commit message.

    git commit -m "Add feature: your feature description"
  6. Push Changes: Push your changes to your forked repository.

    git push origin feature/your-feature-name
  7. Create a Pull Request: Open a pull request to the main repository. Provide a detailed description of your changes and any related issues.

Code of Conduct

Please adhere to the Code of Conduct in all your interactions with the project.

Reporting Issues

If you find a bug or have a feature request, please open an issue on the GitHub Issues page.

Style Guide

  • Follow the PSR-12 coding standards.
  • Write clear and concise commit messages.
  • Ensure all tests pass before submitting a pull request.

Testing

Please write tests for any new features or bug fixes. Run the tests to ensure everything works as expected.

php artisan test

Thank you for your contributions!