Download the PHP package infusionweb/laravel-remote-content-cache without Composer
On this page you can find all versions of the php package infusionweb/laravel-remote-content-cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download infusionweb/laravel-remote-content-cache
More information about infusionweb/laravel-remote-content-cache
Files in infusionweb/laravel-remote-content-cache
Package laravel-remote-content-cache
Short Description Provides a Laravel caching package for content retrieved from remote server(s).
License MIT
Homepage https://github.com/infusionweb/laravel-remote-content-cache
Informations about the package laravel-remote-content-cache
Laravel Remote Content Cache
A Laravel package for retrieving and caching content from remote servers.
This package provides a convenient way to retrieve content from remote servers and cache it for use in Laravel.
The assumption is that this process will be used to create a Laravel front-end for a headless CMS setup. However, there are certainly other use cases for which it should work equally well.
Configuration is handled entirely by a single Laravel config file.
Installation
Step 1: Composer
Via Composer command line:
Or add the package to your composer.json
:
Step 2: Register the Service Provider
Add the service provider to your config/app.php
:
Step 3: Enable the Facade
Add the facade to your config/app.php
:
Step 4: Publish the package config file
You may now configure remote API endpoints for consumption and other preferences by editing the config/contentcache.php
file.
Step 5: Enable the Artisan Console Command
Add the command to your app/Console/Kernel.php
:
This enables the console command which can be used to periodically cache the remote content in Laravel:
The previous command will cache all configured content types, whereas the following command will cache only the "podcasts" type (assuming it is defined in contentcache.php
).
Usage Example
Assuming that a content type "podcasts" is defined in the config/contentcache.php
file:
The following code can be used to cache and retrieve podcast content:
Credits
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-remote-content-cache with dependencies
ext-gd Version *
kozz/laravel-guzzle-provider Version ^7.1
intervention/image Version ~2.3