Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 2.52 KB

CONTRIBUTING.md

File metadata and controls

49 lines (29 loc) · 2.52 KB

Contributing to Laravel Auth Pro

Thank you for considering contributing to Laravel Auth Pro! We welcome your contributions to help make this package even better.

Code of Conduct

Before you start contributing, please read and adhere to our Code of Conduct. We expect all contributors to follow it in all interactions within the project.

How Can You Contribute?

Reporting Bugs

If you discover a bug in Laravel Auth Pro, please help us by creating an issue on GitHub. Be sure to include a detailed description, any relevant code or error messages, and steps to reproduce the bug.

Suggesting Enhancements

Have an idea to improve Laravel Auth Pro? Feel free to open an issue on GitHub to discuss your suggestion. Provide as much context and detail as possible to help us understand your proposal.

Code Contributions

We welcome code contributions via pull requests (PRs). Here's how you can contribute code:

  1. Fork the repository to your GitHub account.
  2. Clone the forked repository to your local machine.
  3. Create a new branch for your feature or bug fix: git checkout -b feature/your-feature or git checkout -b bugfix/your-bug-fix.
  4. Make your changes and ensure all tests pass.
  5. Commit your changes: git commit -m "Add your commit message here".
  6. Push your changes to your GitHub fork: git push origin feature/your-feature.
  7. Create a pull request from your forked repository to the main branch of the original repository.

Please make sure your code follows our coding standards, includes proper documentation and tests, and explain the purpose and functionality of your code in the PR description.

Development Setup

To set up a development environment for Laravel Auth Pro, follow these steps:

  1. Clone the repository to your local machine.
  2. Install dependencies using Composer: composer install.
  3. Run the package's tests to ensure everything is working as expected: vendor/bin/phpunit.

Code Style

Please follow the PSR-12 coding style standard when contributing to this project. We use tools like PHP-CS-Fixer to enforce this standard.

License

By contributing to Laravel Auth Pro, you agree that your contributions will be licensed under the LICENSE of this project.

Thank you for your contributions! Your help is greatly appreciated.