Skip to content

Releases: bogdankharchenko/typed-laravel-settings

v1.0.0 Release

18 Jan 13:04
e74c544
Compare
Choose a tag to compare

Stable Release.

Version Bump

04 Jan 23:38
e74c544
Compare
Choose a tag to compare
0.10

Update composer.json

Caching Improvements.

03 Jan 21:50
a566bdd
Compare
Choose a tag to compare
Caching Improvements. (#9)

* Caching Improvements.

* Fix styling

Co-authored-by: bogdankharchenko <[email protected]>

toName Helper

03 Jan 15:35
547d467
Compare
Choose a tag to compare

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

03 Jan 00:18
edc40a0
Compare
Choose a tag to compare
0.7

Update composer.json

Validation

30 Dec 03:33
2f32054
Compare
Choose a tag to compare
0.6

Version Bump

Feature: Setting Value Encryption

29 Dec 15:46
d2d8d59
Compare
Choose a tag to compare

Use Cache Store

22 Dec 14:28
332b224
Compare
Choose a tag to compare

Instead of Cache Driver, use Cache Store.

Version

22 Dec 00:12
8c0c26d
Compare
Choose a tag to compare
0.3

version bump

Support Multiple Settings When Using Closure

21 Dec 14:23
Compare
Choose a tag to compare
0.2

Merge branch 'main' of https://github.com/bogdankharchenko/typed-lara…