-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 loc) · 1.11 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
{
"name": "lustmored/flysystem-v2-simple-cache-adapter",
"description": "Simple flysystem PSR cache adapter decorator.",
"autoload": {
"psr-4": {
"Lustmored\\Flysystem\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Lustmored\\Flysystem\\Cache\\": "tests"
}
},
"config": {
"sort-packages": true
},
"type": "library",
"require": {
"php": ">=7.2",
"league/flysystem": "^2.0 | ^3.0",
"psr/cache": "^1.0 | ^2.0 | ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"league/flysystem-adapter-test-utilities": "^2.0 | ^3.0",
"league/flysystem-memory": "^2.0 | ^3.0",
"symfony/cache": "^5.4 | ^6.0",
"phpbench/phpbench": "^1.0.2",
"ext-redis": "*",
"league/flysystem-aws-s3-v3": "^2.0 | ^3.0",
"symfony/dotenv": "^5.4 | ^6.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"license": "MIT",
"authors": [
{
"name": "Jakub Caban",
"email": "[email protected]"
}
]
}