forked from jtabet/SlmCache
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 974 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 974 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
{
"name": "slm/cache",
"description": "Zend Framework 2 module to enable route based page caching",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"route",
"cache"
],
"homepage": "https://github.com/juriansluiman/SlmCache",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@soflomo.com",
"homepage": "http://soflomo.com"
}
],
"require": {
"php": ">=8.0",
"laminas/laminas-modulemanager": "^2.5 || ^3.0",
"laminas/laminas-eventmanager": "^2.5 || ^3.0",
"laminas/laminas-mvc": "^2.5 || ^3.0",
"laminas/laminas-http": "^2.5 || ^3.0",
"laminas/laminas-servicemanager": "^2.5 || ^3.0",
"laminas/laminas-cache": "^2.5 || ^3.0"
},
"autoload": {
"psr-0": {
"SlmCache": "src/"
},
"classmap": [
"./Module.php"
]
}
}