-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.03 KB
/
composer.json
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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "auvipev/canary",
"description": "A PSR-6 compliant cache library.",
"license": "GPL-3.0",
"keywords": [
"php7",
"psr-compliant",
"cache-library",
"secure-by-default"
],
"support": {
"email": "nenglish6657@gmail.com"
},
"authors": [
{
"name": "Nicholas English",
"email": "nenglish6657@gmail.com",
"homepage": "https://github.com/Auvipev",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"psr/cache": "^1.0"
},
"suggest": {
"league/flysystem": "If you are using the FileSystem cache adapter.",
"ext-wincache": "If you are using the WinCache cache adapter.",
"ext-apcu": "If you are using the APCu cache adapter.",
"ext-xcache": "If you are using the XCache cache adapter."
},
"require-dev": {
"phpunit/phpunit": "^6.5|^7.1"
},
"autoload": {
"psr-4": {
"Canary\\Cache\\": "./src"
}
}
}