laravel-registry icon indicating copy to clipboard operation
laravel-registry copied to clipboard

Registry manager for Laravel 4 & 5. An alternative for managing application configurations and settings. Now with the magic of caching.

Results 11 laravel-registry issues
Sort by recently updated
recently updated
newest added

[TASK] clean-up code in all classes [BUGFIX] updates Registry\Registy->set() -> adds check if $searchKey is null

Have replaced 'share' method of the container to 'singleton' because in Laravel 5.4 'share' was removed

after installation we could see this error: `[Symfony\Component\Debug\Exception\FatalThrowableError] Call to undefined method Illuminate\Foundation\Application::share()`

The Registry::store() method uses a prepared statement with a hardcoded table name (see #14), but also it uses `ON DUPLICATE KEY...` which **doesn't exist on SQLite**: ``` $this->database->statement("INSERT INTO system_registries...

The Registry::store() method uses a prepared statement with a hardcoded table name ``` $this->database->statement("INSERT INTO system_registries ( `key`, `value` ) VALUES ( ?, ? ) ON DUPLICATE KEY UPDATE `key`...

Since `Registry::setCache()` is only called on `Registry::__construct()`, any non-reloading instance of the app (i.e. `php artisan tinker` or `php artisan queue:work --daemon`) will not see changes made to the registry...

Hello. I don't know if this is an issue, but when I try to get a key of an array, but key does not exists, Registry is returning the array....

Hi, What calls are available and can your package do groups? Thanks

When I try to set key with an array, eg Registry::set('api', [ 'name' => 'ABC API' ]); It save it as {"":{"name":"ABC API"}}