-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
45 lines (45 loc) · 1.34 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
{
"name": "czim/file-handling",
"description": "File Handling Helper",
"keywords": [ "file", "uploads", "storage", "s3" ],
"homepage": "https://github.com/czim",
"require": {
"php": ">=7.1.0",
"imagine/imagine": "^1.2",
"myclabs/php-enum": "^1.4",
"psr/container": "^1.0|^2.0",
"symfony/http-foundation": "^3.0|^4.0|^5.0|^6.0|^7.0",
"ext-curl": "*"
},
"require-dev": {
"illuminate/contracts": "*",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "0.9.*|^1.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"php-coveralls/php-coveralls": "^2.1",
"php-ffmpeg/php-ffmpeg": "^0.9.5|^1.0.0"
},
"autoload": {
"psr-4": {
"Czim\\FileHandling\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Czim\\FileHandling\\Test\\": "tests"
},
"files": [
"tests/Helpers/helpers.php"
]
},
"suggest": {
"php-ffmpeg/php-ffmpeg": "Required for video conversion and thumbnail generation",
"league/flysystem-aws-s3-v3": "Required for AWS S3 file storage",
"spatie/image-optimizer": "Required to use the image optimizer variant strategy"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}