You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Give name `settings_key_team_id_unique` to unique index in team migration file - https://github.com/rawilk/laravel-settings/commit/1c44f29f6e8f78914876c629f1b0b3d1eff7f84c
76
+
- Give name `settings_key_team_id_unique` to unique index in team migration file - https://github.com/agentsoftware/laravel-settings/commit/1c44f29f6e8f78914876c629f1b0b3d1eff7f84c
- Add team/multi-tenancy support by @rawilk in https://github.com/rawilk/laravel-settings/pull/28
92
+
- Add team/multi-tenancy support by @agentsoftware in https://github.com/agentsoftware/laravel-settings/pull/28
93
93
- Remove Laravel 8.x support
94
94
- Remove Laravel 9.x support
95
95
- Add PHP 8.3 support
96
96
- Update interface method signatures for `Driver` and `Setting`
97
-
- Add support for custom key and context serializers by @rawilk in https://github.com/rawilk/laravel-settings/pull/30
98
-
- Add custom value serializer support by @rawilk in https://github.com/rawilk/laravel-settings/pull/31
99
-
- Fix typo in `isFalse` check - https://github.com/rawilk/laravel-settings/pull/34/commits/84989d4803e9ee99cfbd84925f8dae783c81b55e
100
-
- Add support to fetch/flush all settings by @rawilk in https://github.com/rawilk/laravel-settings/pull/32
101
-
- Dispatch events for certain operations in settings service @rawilk in https://github.com/rawilk/laravel-settings/pull/33
102
-
- Add ability to get the cache key for a given setting key - https://github.com/rawilk/laravel-settings/pull/34/commits/91fbd874f653b50f37f092379ee997bf2642e368
97
+
- Add support for custom key and context serializers by @agentsoftware in https://github.com/agentsoftware/laravel-settings/pull/30
98
+
- Add custom value serializer support by @agentsoftware in https://github.com/agentsoftware/laravel-settings/pull/31
99
+
- Fix typo in `isFalse` check - https://github.com/agentsoftware/laravel-settings/pull/34/commits/84989d4803e9ee99cfbd84925f8dae783c81b55e
100
+
- Add support to fetch/flush all settings by @agentsoftware in https://github.com/agentsoftware/laravel-settings/pull/32
101
+
- Dispatch events for certain operations in settings service @agentsoftware in https://github.com/agentsoftware/laravel-settings/pull/33
102
+
- Add ability to get the cache key for a given setting key - https://github.com/agentsoftware/laravel-settings/pull/34/commits/91fbd874f653b50f37f092379ee997bf2642e368
@@ -180,13 +180,13 @@ All notable changes to `laravel-settings` will be documented in this file
180
180
181
181
### Fixed
182
182
183
-
- Fix bug with context being reset when saving ([#3](https://github.com/rawilk/laravel-settings/issues/3))
183
+
- Fix bug with context being reset when saving ([#3](https://github.com/agentsoftware/laravel-settings/issues/3))
184
184
185
185
## 1.0.2 - 2020-10-09
186
186
187
187
### Fixed
188
188
189
-
- Wrap decrypting values in a try/catch to help prevent decryption errors when caching is used - [#2](https://github.com/rawilk/laravel-settings/issues/2)
189
+
- Wrap decrypting values in a try/catch to help prevent decryption errors when caching is used - [#2](https://github.com/agentsoftware/laravel-settings/issues/2)
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# Settings for Laravel
2
2
3
-
[](https://packagist.org/packages/rawilk/laravel-settings)
[](https://packagist.org/packages/rawilk/laravel-settings)
[](https://packagist.org/packages/agentsoftware/laravel-settings)
[](https://packagist.org/packages/agentsoftware/laravel-settings)
Settings for Laravel allows you to store your application settings in the database. It works alongside of the built-in configuration system that Laravel offers. With this package, you can store application specific settings that wouldn't make sense to store in a configuration file, or that you want end-users to be able to update through your application's UI.
12
12
@@ -35,7 +35,7 @@ For documentation, please visit: https://randallwilk.dev/docs/laravel-settings
35
35
You can install the package via composer:
36
36
37
37
```bash
38
-
composer require rawilk/laravel-settings
38
+
composer require agentsoftware/laravel-settings
39
39
```
40
40
41
41
You can publish and run the migrations with:
@@ -51,7 +51,7 @@ You can publish the config file with:
0 commit comments