-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.19 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.19 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
{
"name": "zenstruck/filesystem",
"description": "Wrapper for league/flysystem with alternate API and added functionality.",
"homepage": "https://github.com/zenstruck/filesystem",
"type": "library",
"license": "MIT",
"keywords": [],
"authors": [
{
"name": "Kevin Bond",
"email": "kevinbond@gmail.com"
}
],
"require": {
"php": ">=8.1",
"league/flysystem": "^3.11",
"zenstruck/image": "^1.0",
"zenstruck/stream": "^1.2",
"zenstruck/temp-file": "^1.2.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.8|^3.0",
"doctrine/orm": "^2.14|^3.0",
"league/flysystem-async-aws-s3": "^3.10",
"league/flysystem-ftp": "^3.10",
"league/flysystem-memory": "^3.10",
"league/flysystem-read-only": "^3.10",
"league/flysystem-sftp-v3": "^3.10",
"league/flysystem-ziparchive": "^3.12",
"league/glide": "^2.2",
"league/mime-type-detection": ">=1.8",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.6.18",
"srwiez/thumbhash": "^1.2",
"symfony/browser-kit": "^6.4|^7.0|^8.0",
"symfony/form": "^6.4|^7.0|^8.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0",
"symfony/mime": "^6.4|^7.0|^8.0",
"symfony/phpunit-bridge": "^6.4|^7.0|^8.0",
"symfony/serializer": "^6.4|^7.0|^8.0",
"symfony/stopwatch": "^6.4|^7.0|^8.0",
"symfony/string": "^6.4|^7.0|^8.0",
"symfony/twig-bundle": "^6.4|^7.0|^8.0",
"symfony/validator": "^6.4|^7.0|^8.0",
"symfony/var-dumper": "^6.4|^7.0|^8.0",
"symfony/var-exporter": "^6.4|^7.0|^8.0",
"symfony/yaml": "^6.4|^7.0|^8.0",
"twig/twig": "^3.6",
"zenstruck/assert": "^1.2",
"zenstruck/console-test": "^1.4",
"zenstruck/foundry": "^2.0",
"zenstruck/uri": "^2.3"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\": ["src/"] }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Tests\\": ["tests/"] }
},
"minimum-stability": "dev",
"prefer-stable": true
}