grafite/cache

An SQLite based cache with some extra features.

v1.0.0 2024-11-15 18:01 UTC

This package is auto-updated.

Last update: 2024-11-15 18:03:45 UTC


README

Grafite Cache

Cache - SQLite based cache driver with some fancy extras like tagging and encryption etc.

Build Status Maintainability Packagist license

The Cache package an SQLite based cache driver with some fancy extras like tagging and encryption.

Author(s):

Requirements

  1. PHP 8.2+

Compatibility and Support

Installation

Start a new Laravel project:

composer create-project laravel/laravel your-project-name

Then run the following to add Support

composer require "grafite/cache"

Append to the cache.php config file in the stores array:

'sqlite' => [
    'driver' => 'sqlite',
    'table' => 'cache',
    'database' => env('CACHE_DATABASE', database_path('cache.sqlite')),
    'prefix' => '',
    'encrypted' => false,
],

Documentation

https://docs.grafite.ca/utilities/cache

License

Support is open-sourced software licensed under the MIT license

Bug Reporting and Feature Requests

Please add as many details as possible regarding submission of issues and feature requests

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.