-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 857 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "aalfiann/buffer-cache",
"description": "Cache the response page with buffer support.",
"keywords": ["cache","buffer-cache","page-cache","response-cache","simple-cache"],
"authors": [
{
"name": "M ABD AZIZ ALFIAN",
"email": "aalfiann@gmail.com",
"homepage": "https://github.com/aalfiann",
"role": "Developer"
}
],
"type": "library",
"require": {
"php": ">=7.1",
"symfony/cache": "^4.2",
"doctrine/cache": "^1.8"
},
"suggest": {
"ext-sqlite3": "SQLite3 extension is required to use the SQLite3 database as a cache storage",
"predis/predis": "Allows you to use cache with Redis"
},
"license": "MIT",
"autoload": {
"psr-4": {
"aalfiann\\BufferCache\\": "src/"
}
}
}