-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "arxy/files",
"type": "symfony-bundle",
"authors": [
{
"name": "Bozhidar Hristov",
"email": "warxcell@gmail.com"
}
],
"require": {
"php": "^8.0",
"league/mime-type-detection": "^1.7",
"gabrielelana/byte-units": "^0.5.0"
},
"require-dev": {
"symfony/validator": "*",
"doctrine/orm": "*",
"symfony/form": "*",
"symfony/http-foundation": "*",
"twig/twig": "*",
"symfony/cache": "*",
"symfony/asset": "*",
"microsoft/azure-storage-blob": "*",
"aws/aws-sdk-php": "*",
"league/flysystem-memory": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/http-kernel": "*",
"symfony/dependency-injection": "^5.2",
"infection/infection": "^0.21.4",
"symfony/symfony": "^4.4 | ^5.2",
"doctrine/doctrine-bundle": "^2.3",
"liip/imagine-bundle": "^2.6",
"vimeo/psalm": "^4.7",
"league/flysystem-bundle": "^2.0",
"symfony/uid": "*",
"imagine/imagine": "^1.2",
"symfony/messenger": "*",
"league/flysystem": "^2.0 | ^3.0",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^7.0"
},
"suggest": {
"league/flysystem": "Use FlySystem Storage to store contents of file",
"symfony/validator": "Validate files against constraints",
"symfony/form": "Integrate file upload with forms",
"doctrine/orm": "Use Doctrine ORM as persistence layer",
"twig/twig": "Use Arxy\\Files\\Twig\\FilesExtension::formatBytes to get formatted KiB/MiB/GB instead. Also for form template",
"symfony/uid": "Required to use UuidV5Strategy/UuidV4Strategy Naming Strategy",
"imagine/imagine": "Use ImagePreviewGenerator",
"symfony/messenger": "Generate Previews asynchronous.",
"symfony/event-dispatcher": "Usage of events.",
"liip/imagine-bundle": "Generate image thumbnails",
"aws/aws-sdk-php": "Generate file urls for files hosted on AWS S3",
"microsoft/azure-storage-blob": "Generate file urls for files hosted on Microsoft Azure Blob Storage"
},
"autoload": {
"psr-4": {
"Arxy\\FilesBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arxy\\FilesBundle\\Tests\\": "tests/"
}
}
}