-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
59 lines (59 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ocramius/ocra-cached-view-resolver",
"description": "Cached view template path resolver to speed up the ZF2 view layer by avoiding stat calls",
"license": "MIT",
"type": "library",
"keywords": [
"zf2",
"zendframework",
"zend framework 2",
"performance"
],
"homepage": "https://github.com/Ocramius/OcraCachedViewResolver",
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.com/"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"laminas/laminas-cache": "^3.11.0",
"laminas/laminas-modulemanager": "^2.14.0",
"laminas/laminas-mvc": "^3.6.1",
"laminas/laminas-servicemanager": "^3.21.0",
"laminas/laminas-view": "^2.30.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"laminas/laminas-cache-storage-adapter-memory": "^2.2.0",
"phpunit/phpunit": "^9.6.13",
"roave/infection-static-analysis-plugin": "^1.33.0",
"vimeo/psalm": "^5.15.0"
},
"autoload": {
"psr-0": {
"OcraCachedViewResolver\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"OcraCachedViewResolverTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
},
"platform": {
"php": "8.1.99"
}
}
}