Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 3.0.7 #35

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ Class Cache được customize lại từ thư viện `phpfastcache/phpfastcache

- [x] V1.x, V2.x support all PHP version `>=5.6`
- [x] V3.x support all PHP version `>=7.0`
- [x] V4.x support all PHP version `>=8.0`

## Information

- [x] Cache by phpfastcache/phpfastcache `^9.0 || ^8.0.8 || ^7.1`
- [x] Logging by nguyenanhung/my-debug `^3.0`
- [x] Support Driver: `files`, `apcu`, `redis`, `predis`, `memcache`, `memcached`, `mongodb`, `cassandra`, `couchbase`, `couchdb`, `leveldb`, `ssdb`, `Zend Disk Cache`, `Zend Memory Cache`, `Cookie`, `SqlLite`
- [x] Cache by `phpfastcache/phpfastcache` `^9.0 || ^8.0.8 || ^7.1`
- [x] Logging by `nguyenanhung/my-debug` `^4.0 || ^3.0`
- [x] Support Driver: `files`, `apcu`, `redis`, `predis`, `memcache`, `memcached`, `mongodb`, `cassandra`, `couchbase`
, `couchdb`, `leveldb`, `ssdb`, `Zend Disk Cache`, `Zend Memory Cache`, `Cookie`, `SqlLite`

## Usage

Expand All @@ -24,7 +26,7 @@ See `test/test.php` for example usage very simple.
If any question & request, please contact following information

| Name | Email | Skype | Facebook |
| ----------- | -------------------- | ---------------- | ------------- |
|-------------|----------------------|------------------|---------------|
| Hung Nguyen | [email protected] | nguyenanhung5891 | @nguyenanhung |

From Hanoi with Love <3
From Hanoi with Love <3
104 changes: 52 additions & 52 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
{
"name": "nguyenanhung/my-cache",
"type": "library",
"description": "My Cache Library",
"keywords": [
"cache",
"phpfastcache",
"my cache"
],
"homepage": "https://github.com/nguyenanhung/my-cache",
"license": "GPL-3.0",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"nguyenanhung/my-debug": "^3.0",
"phpfastcache/phpfastcache": "^9.0 || ^8.0.8 || ^7.1"
},
"require-dev": {
"kint-php/kint": ">=3.0"
},
"autoload": {
"psr-4": {
"nguyenanhung\\MyCache\\": "src/"
}
},
"suggest": {
"ext-apcu": "*",
"ext-intl": "*",
"ext-memcached": "*",
"ext-memcache": "*",
"ext-redis": "*",
"ext-xcache": "*",
"ext-sqlite": "*",
"ext-wincache": "*",
"ext-leveldb": "*",
"ext-couchbase": "*",
"ext-couchbase_v3": "*",
"predis/predis": "^1.1",
"mongodb/mongodb": "^1.9",
"phpfastcache/phpssdb": "~1.0.0",
"phpfastcache/couchdb": "~1.0.0"
}
"name": "nguyenanhung/my-cache",
"type": "library",
"description": "My Cache Library",
"keywords": [
"cache",
"phpfastcache",
"my cache"
],
"homepage": "https://github.com/nguyenanhung/my-cache",
"license": "GPL-3.0",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"nguyenanhung/my-debug": "^4.0 || ^3.0",
"phpfastcache/phpfastcache": "^9.0 || ^8.0.8 || ^7.1"
},
"require-dev": {
"kint-php/kint": ">=3.0"
},
"autoload": {
"psr-4": {
"nguyenanhung\\MyCache\\": "src/"
}
},
"suggest": {
"ext-apcu": "*",
"ext-intl": "*",
"ext-memcached": "*",
"ext-memcache": "*",
"ext-redis": "*",
"ext-xcache": "*",
"ext-sqlite": "*",
"ext-wincache": "*",
"ext-leveldb": "*",
"ext-couchbase": "*",
"ext-couchbase_v3": "*",
"predis/predis": "^1.1",
"mongodb/mongodb": "^1.9",
"phpfastcache/phpssdb": "~1.0.0",
"phpfastcache/couchdb": "~1.0.0"
}
}
Loading