Download the PHP package infobiotech/php-json-cache without Composer
On this page you can find all versions of the php package infobiotech/php-json-cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download infobiotech/php-json-cache
More information about infobiotech/php-json-cache
Files in infobiotech/php-json-cache
Package php-json-cache
Short Description JSON-based PSR-16 cache implementation.
License MIT
Homepage https://github.com/infobiotech/php-json-cache
Informations about the package php-json-cache
infobiotech/php-json-cache
A key-value JSON-based PSR-16 cache implementation.
Built with:
- PHP-FIG PSR-16: a common interface for caching libraries.
- Psr\SimpleCache: a repository that holds all interfaces related to PSR-16.
- League\Flysystem: a filesystem abstraction that allows to easily swap out a local filesystem for a remote one.
Here our Quality Assurance indicators for master
git branch.
build status | code coverage | code quality | |
---|---|---|---|
Travis CI | |||
CodeCov | |||
Scrutinizer | ![]() |
![]() |
|
Code Climate | |||
Codacy |
Why JSON?
- In some situations, remote web hosts do not support (or do not allow to install) major cache drivers.
- JSON objects allow to set/get key-value items.
Getting Started
Prerequisites
- PHP 5.6 or greater (including 7.0, 7.1 and HHVM)
Installing via composer
Make sure you have composer installed.
Then run the following command from your project root:
Usage
infobiotech/php-json-cache implements PSR-16 and thus provides a standardized API for storing and retrieving data.
Here is a simple use case:
Migrations
From v0.x to v1.x
Due to a deep refactor and restructure, the instantiation code must change from this:
to this:
The API is unchanged.
Other PSR-16 implementations
- sabre-io/cache - In-memory, APCu and Memcached cache abstraction layer.
- matthiasmullie/scrapbook - Full featured caching environment with several adapters.
- SilentByte/litecache - Lightweight code/opcode caching by generating
*.php
files for cached objects. - kodus/file-cache - Flat-file cache-implementation.
- naroga/redis-cache - A Redis driver implementation.
- paillechat/apcu-simple-cache - APCu implementation.
- kodus/mock-cache - A PSR-16 mock cache for integration testing.
Tests
Running Tests
Run the following command from your project root:
Running PHP Code Sniffer
Run the following command from your project root:
Versioning
We try to follow SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Alessandro Raffa - Initial work - infobiotech
Contributing
Contributions are welcome and will be credited.
Please read CONTRIBUTING.md for details on our code of conduct.
License
This project is licensed under the MIT License - see the LICENSE.md file for details