-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,262 additions
and
691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
# file-cache | ||
# Cache | ||
|
||
Different caching implementations based of PSR-16. | ||
|
||
|
||
## File Cache | ||
Simple file cache that will store the files in the root of the project folder. | ||
Can be customised. | ||
|
||
## APCU Cache | ||
Simple APCU Cache that can be used to store the cached object in APCU | ||
|
||
|
||
### TODO | ||
Implement multiple functions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,33 @@ | ||
{ | ||
"name": "mressex/file-cache", | ||
"authors": [ | ||
{ | ||
"name": "Kyle Essex" | ||
} | ||
], | ||
"require": { | ||
"phpunit/phpunit": "^9.2", | ||
"psr/simple-cache": "^1.0" | ||
"name": "mressex/cache", | ||
"type": "library", | ||
"description": "Different PSR-16 cache implementations ", | ||
"keywords": [ | ||
"Cache", | ||
"Caching" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Kyle Essex" | ||
} | ||
, | ||
"require-dev": { | ||
"roave/security-advisories": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MrEssex\\FileCache\\": "src", | ||
"MrEssex\\FileCache\\Tests\\": "tests" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4", | ||
"ext-apcu": "*", | ||
"phpunit/phpunit": "^9.5.2", | ||
"psr/simple-cache": "^1.0" | ||
}, | ||
"provide": { | ||
"psr/simple-cache-implementation": "^1.0" | ||
}, | ||
"require-dev": { | ||
"roave/security-advisories": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MrEssex\\FileCache\\": "src", | ||
"MrEssex\\FileCache\\Tests\\": "tests" | ||
} | ||
} | ||
} |
Oops, something went wrong.