forked from thephpleague/flysystem-cached-adapter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.37 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
{
"name": "jgivoni/flysystem-cache-adapter",
"description": "A PSR-6 compliant adapter decorator for Flysystem v3 that caches file metadata to improve performance.",
"license": "MIT",
"authors": [
{
"name": "Jakob Givoni",
"email": "[email protected]"
}
],
"keywords": [
"flysystem",
"flysystem 3",
"filesystem",
"cache",
"adapter",
"decorator",
"metadata",
"performance",
"PSR-6"
],
"autoload": {
"psr-4": {
"jgivoni\\Flysystem\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\jgivoni\\Flysystem\\Cache\\": "tests/"
}
},
"require": {
"php": "^8.1",
"league/flysystem": "^3.0",
"psr/cache": "^2.0|^3.0"
},
"require-dev": {
"ext-zend-opcache": "*",
"ext-xdebug": "*",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.3",
"mockery/mockery": "^1.6",
"league/flysystem-adapter-test-utilities": "^3.15",
"league/flysystem-memory": "^3.15",
"symfony/cache": "^6.3|^7.0",
"league/flysystem-aws-s3-v3": "^3.15",
"friendsofphp/php-cs-fixer": "^3.68"
},
"suggest": {
"symfony/cache": "Ready to use adapters for the most common caching backends"
}
}