-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 3.84 KB
/
Copy pathcomposer.json
File metadata and controls
115 lines (115 loc) · 3.84 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
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
108
109
110
111
112
113
114
115
{
"name": "cache/cache",
"description": "Library of all the php-cache adapters",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"psr6"
],
"authors": [
{
"name": "Aaron Scherer",
"email": "aequasi@gmail.com",
"homepage": "https://github.com/aequasi"
},
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com",
"homepage": "https://github.com/nyholm"
}
],
"homepage": "https://www.php-cache.com/en/latest/",
"require": {
"php": "^8.2",
"doctrine/cache": "^2.2",
"league/flysystem": "^2.0 || ^3.0",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"psr/simple-cache": "^2.0 || ^3.0"
},
"require-dev": {
"cache/integration-tests": "^1.0.4@dev",
"defuse/php-encryption": "^2.4",
"illuminate/cache": "^11.0 || ^12.0 || ^13.0",
"mockery/mockery": "^1.6",
"mongodb/mongodb": "^2.0",
"php-cs-fixer/shim": "3.95.19",
"phpstan/phpstan": "2.2.8",
"phpunit/phpunit": "^11.5",
"predis/predis": "^2.0 || ^3.0",
"symfony/cache": "^7.4 || ^8.0",
"symfony/clock": "^7.4 || ^8.0"
},
"replace": {
"cache/adapter-common": "3.0.0",
"cache/apcu-adapter": "3.0.0",
"cache/array-adapter": "3.0.0",
"cache/chain-adapter": "2.1.0",
"cache/doctrine-adapter": "3.0.0",
"cache/encryption-cache": "2.1.0",
"cache/filesystem-adapter": "3.0.0",
"cache/hierarchical-cache": "2.1.0",
"cache/illuminate-adapter": "2.0.0",
"cache/memcache-adapter": "3.0.0",
"cache/memcached-adapter": "3.0.0",
"cache/mongodb-adapter": "3.0.0",
"cache/namespaced-cache": "2.0.4",
"cache/predis-adapter": "3.0.0",
"cache/prefixed-cache": "2.0.4",
"cache/psr-6-doctrine-bridge": "4.0.4",
"cache/redis-adapter": "3.0.0",
"cache/session-handler": "2.0.4",
"cache/simple-cache-bridge": "2.0.4",
"cache/tag-interop": "2.0.0",
"cache/taggable-cache": "3.0.0",
"cache/util": "1.0.4",
"cache/void-adapter": "3.0.0"
},
"provide": {
"psr/cache-implementation": "3.0",
"psr/simple-cache-implementation": "2.0 || 3.0"
},
"suggest": {
"ext-apcu": "APCu extension is required to use the APCu Adapter",
"ext-memcache": "Memcache extension is required to use the Memcache Adapter",
"ext-memcached": "Memcached extension is required to use the Memcached Adapter",
"ext-mongodb": "Mongodb extension required to use the Mongodb adapter",
"ext-redis": "Redis extension is required to use the Redis adapter",
"defuse/php-encryption": "Required to use the encryption cache decorator",
"mongodb/mongodb": "Mongodb lib required to use the Mongodb adapter"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\": "src/"
},
"files": [
"src/inc.php"
],
"exclude-from-classmap": [
"**/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"scripts": {
"coverage": [
"@php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-clover coverage.xml --coverage-text --only-summary-for-coverage-text",
"@php script/check-coverage.php coverage.xml 90"
],
"cs:check": "php-cs-fixer fix --dry-run --diff --sequential",
"cs:fix": "php-cs-fixer fix --sequential",
"phpstan": "phpstan analyse --debug --no-progress --memory-limit=1G",
"quality": [
"@cs:check",
"@phpstan",
"@test"
],
"test": "phpunit"
}
}