-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.5 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
{
"name": "laminas/laminas-cache-storage-adapter-benchmark",
"description": "Generic component to provide benchmarking capabilities to the various storage adapter",
"keywords": [
"laminas",
"cache",
"benchmark"
],
"license": "BSD-3-Clause",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-cache": "^4.0.1",
"laminas/laminas-serializer": "^3.0",
"phpbench/phpbench": "^1.2.15"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"vimeo/psalm": "^5.24.0"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Laminas\\Cache\\Storage\\Adapter\\Benchmark\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasBench\\Cache\\": "benchmark/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats"
},
"support": {
"issues": "https://github.com/laminas/laminas-cache-storage-adapter-benchmark/issues",
"forum": "https://discourse.laminas.dev/",
"source": "https://github.com/laminas/laminas-cache-storage-adapter-benchmark",
"rss": "https://github.com/laminas/laminas-cache-storage-adapter-benchmark/releases.atom"
}
}