forked from laminas/laminas-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "laminas/laminas-cache",
"description": "Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"cache",
"psr-6",
"psr-16"
],
"homepage": "https://laminas.dev",
"support": {
"docs": "https://docs.laminas.dev/laminas-cache/",
"issues": "https://github.com/laminas/laminas-cache/issues",
"source": "https://github.com/laminas/laminas-cache",
"rss": "https://github.com/laminas/laminas-cache/releases.atom",
"chat": "https://laminas.dev/chat",
"forum": "https://discourse.laminas.dev"
},
"config": {
"process-timeout": 600,
"sort-packages": true,
"platform": {
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laminas": {
"component": "Laminas\\Cache",
"config-provider": "Laminas\\Cache\\ConfigProvider"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"laminas/laminas-cache-storage-implementation": "1.0",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-servicemanager": "^3.21",
"laminas/laminas-stdlib": "^3.6",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"psr/clock": "^1.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"laminas/laminas-cache-storage-adapter-apcu": "^2.4",
"laminas/laminas-cache-storage-adapter-blackhole": "^2.3",
"laminas/laminas-cache-storage-adapter-filesystem": "^2.3",
"laminas/laminas-cache-storage-adapter-memory": "^2.2",
"laminas/laminas-cache-storage-adapter-test": "^2.4",
"laminas/laminas-cli": "^1.7",
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-config-aggregator": "^1.13",
"laminas/laminas-feed": "^2.20",
"laminas/laminas-serializer": "^2.14",
"phpbench/phpbench": "^1.2.7",
"phpunit/phpunit": "^9.5.27",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.4"
},
"conflict": {
"symfony/console": "<5.1",
"stella-maris/clock": "<0.1.7"
},
"provide": {
"psr/cache-implementation": "1.0",
"psr/simple-cache-implementation": "1.0"
},
"suggest": {
"laminas/laminas-cache-storage-adapter-apcu": "APCu implementation",
"laminas/laminas-cache-storage-adapter-blackhole": "Blackhole/Void implementation",
"laminas/laminas-cache-storage-adapter-ext-mongodb": "MongoDB implementation",
"laminas/laminas-cache-storage-adapter-filesystem": "Filesystem implementation",
"laminas/laminas-cache-storage-adapter-memcached": "Memcached implementation",
"laminas/laminas-cache-storage-adapter-memory": "Memory implementation",
"laminas/laminas-cache-storage-adapter-redis": "Redis implementation",
"laminas/laminas-cache-storage-adapter-session": "Session implementation",
"laminas/laminas-cli": "The laminas-cli binary can be used to consume commands provided by this component",
"laminas/laminas-serializer": "Laminas\\Serializer component"
},
"autoload": {
"psr-4": {
"Laminas\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\Cache\\": "test/",
"LaminasBench\\Cache\\": "benchmark/"
}
},
"scripts": {
"benchmark": "phpbench run --revs=2 --iterations=2 --report=aggregate",
"check": [
"@cs-check",
"@static-analysis",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}