-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 795 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 795 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
30
31
32
33
34
35
36
37
{
"name": "smottt/layercache",
"description": "LayerCache, a PHP multi-layer caching framework",
"version": "1.1.1",
"type": "library",
"keywords": ["cache"],
"homepage": "https://github.com/smottt/layercache",
"license": "LGPL-3.0",
"authors": [
{
"name": "Gašper Kozak",
"email": "gasper@kozak.si",
"homepage": "http://www.kozak.si",
"role": "Developer"
},
{
"name": "Metod N",
"email": "metod@simpel.si",
"homepage": "http://www.metod.si",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"LayerCache\\": "lib/"
}
},
"autoload-dev": {
"files": ["test/mocks.php"]
},
"require": {
"php": "~5.6|~7.0"
},
"require-dev": {
"phpunit/phpunit": "~5.6"
}
}