Releases: bogdankharchenko/typed-laravel-settings
Releases · bogdankharchenko/typed-laravel-settings
v1.0.0 Release
Stable Release.
Version Bump
0.10 Update composer.json
Caching Improvements.
Caching Improvements. (#9) * Caching Improvements. * Fix styling Co-authored-by: bogdankharchenko <[email protected]>
toName Helper
Ability to use fully typed properties and resolve their names.
class Settings {
public string $color = 'red';
}
We can use toName()
to resolve $color property name into a string;
$settings->toName()->color
// returns the property name as string
Introduce a Cacher Repository
0.7 Update composer.json
Validation
0.6 Version Bump
Feature: Setting Value Encryption
0.5 version bump
Use Cache Store
Instead of Cache Driver, use Cache Store.
Version
0.3 version bump
Support Multiple Settings When Using Closure
0.2 Merge branch 'main' of https://github.com/bogdankharchenko/typed-lara…