-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.94 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.94 KB
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
{
"name": "laminas/laminas-cache-storage-adapter-test",
"description": "Laminas cache storage adapter shared test dependency",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"cache",
"test"
],
"support": {
"issues": "https://github.com/laminas/laminas-cache-storage-adapter-test/issues",
"forum": "https://discourse.laminas.dev/",
"source": "https://github.com/laminas/laminas-cache-storage-adapter-test",
"rss": "https://github.com/laminas/laminas-cache-storage-adapter-test/releases.atom"
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"laminas/laminas-cache": "^4.2.0",
"phpunit/phpunit": "^10.5.63",
"psr/cache": "^2.0 || ^3.0",
"psr/clock": "^1.0",
"psr/container": "^2.0",
"psr/simple-cache": "^2.0 || ^3.0"
},
"require-dev": {
"composer-plugin-api": "^2",
"laminas/laminas-coding-standard": "~3.1.0",
"psalm/plugin-phpunit": "^0.19.5",
"vimeo/psalm": "^6.15.1",
"webmozart/assert": "^2.1.6"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LaminasTest\\Cache\\Storage\\Adapter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTestTest\\Cache\\Storage\\Adapter\\": [
"test/unit",
"test/integration"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.2.99"
},
"sort-packages": true
},
"extra": {},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}