grafite / cache
An SQLite based cache with some extra features.
Requires
- php: ^8.2
- illuminate/collections: ^11.0
- illuminate/support: ^11.0
Requires (Dev)
- laravel/pint: ^1.10
- mockery/mockery: ^1.0
- orchestra/testbench: ^8.0|^9.0
- phpunit/phpunit: ^10.0
This package is auto-updated.
Last update: 2024-11-15 18:03:45 UTC
README
Cache - SQLite based cache driver with some fancy extras like tagging and encryption etc.
The Cache package an SQLite based cache driver with some fancy extras like tagging and encryption.
Author(s):
- Matt Lantz (@mattylantz, mattlantz at gmail dot com)
Requirements
- 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.