Releases: ACT-Training/livewire-calendar
Releases · ACT-Training/livewire-calendar
Livewire 4 Modernisation
Breaking Changes
- Renamed abstract method
getEventsProperty()toevents()— consuming apps must update their override (#7) - Blade view now calls
$this->events()as a method instead of accessing it as a computed property
Changes
- Upgraded dev dependencies to Laravel 11 / Pest 3 / PHPStan 2
- Simplified CI test matrix (PHP 8.2–8.4, Ubuntu only)
- Fixed PHPStan workflow and config for PHPStan 2
Migration
In your class that extends LivewireCalendar, rename:
// Before
public function getEventsProperty(): array
// After
public function events(): arrayLaravel 11
Update composer.json Bump PHP version