talyssonoc / react-laravel

Package for using ReactJS with Laravel
896 stars 90 forks source link

Configuration caching is unnecessary in Laravel 5.x #42

Closed dwightwatson closed 8 years ago

dwightwatson commented 9 years ago

Laravel 5.1 supports config caching out of the box (with the config:cache command) which would generally be used after a deployment to cache any new configuration values. This makes the manual caching performed by the service provider unnecessary, and even more painful than it would be otherwise if you wanted to update the configuration in a release - you'd have to manually clear the cache.

Happy to submit a PR for this and update the docs if you're interested.

talyssonoc commented 9 years ago

Sorry by the delay, @dwightwatson. A PR for this would be awesome, feel free to do it! :)

willvincent commented 8 years ago

See PR #74