[2.0.0] - 2025-10-05
🚀 Features
- [breaking] Change default behavior to instance methods and replace --i with --s flag
BREAKING CHANGE: Default method generation changed from static to instance methods.
Changes: - Replaced --i flag with --s flag for static method generation - Default generated actions are now instance methods (non-static)
- Removed method_static configuration option from config file
- Updated all flag combinations to use 's' instead of 'i'
- Updated documentation and examples to reflect new behavior
- Updated all tests to match new default behavior
Migration guide for v1.x users:
- Replace any usage of --i flag with --s flag in your scripts
- Remove 'method_static' from config/laravel-actions.php if present
- Be aware that new actions will be instance methods by default
- Existing generated actions are not affected and will continue to work