Contributions are welcome and will be fully credited.
We accept contributions via Pull Requests on GitHub.
-
PSR-12 Coding Standard - Check the code style with
composer format. -
Add tests! - Your patch won't be accepted if it doesn't have tests.
-
Document any change in behaviour - Make sure the
README.mdand any other relevant documentation are kept up-to-date. -
Consider our release cycle - We try to follow SemVer v2.0.0. Randomly breaking public APIs is not an option.
-
One pull request per feature - If you want to do more than one thing, send multiple pull requests.
-
Send coherent history - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.
composer testWe use Laravel Pint for code formatting:
composer format-
Fork the repository
-
Clone your fork locally
-
Run the setup script (recommended):
./setup.sh
Or manually install dependencies:
composer install
-
Create a feature branch:
git checkout -b feature/your-feature-name
-
Make your changes
-
Run tests:
composer test -
Format code:
composer format
-
Commit and push
-
Create a Pull Request
This package supports:
- PHP 8.1 with Laravel 10
- PHP 8.2+ with Laravel 10 or 11
The setup.sh script automatically detects your PHP version and installs compatible dependencies.
When creating an issue, please provide:
- PHP Version
- Laravel Version
- Filament Version
- Package Version
- Steps to reproduce
- Expected behavior
- Actual behavior
We're always looking for suggestions to improve this package. If you have a suggestion, please:
- Check if the feature has already been requested
- Create a detailed issue explaining:
- What problem it solves
- How you envision it working
- Any alternative solutions you've considered
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
Happy coding!