-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·87 lines (87 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mostafaznv/larupload",
"description": "Larupload is a ORM based file uploader for laravel to upload image, video, audio and other known files.",
"keywords": [
"file",
"upload",
"image",
"video",
"hls",
"stream",
"media",
"file manager",
"storage",
"s3",
"sftp",
"file system",
"resize",
"crop",
"ffmpeg",
"m3u8",
"laravel",
"laravel 8",
"mostafaznv"
],
"license": "MIT",
"support": {
"issues": "https://github.com/mostafaznv/larupload/issues",
"source": "https://github.com/mostafaznv/larupload",
"docs": "https://github.com/mostafaznv/larupload/blob/master/README.md"
},
"authors": [
{
"name": "mostafaznv",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"imagine/imagine": "^1.3",
"intervention/image": "^3.1.0",
"ksubileau/color-thief-php": "^2.0",
"laravel/framework": "^10.4.1|^11.0",
"php-ffmpeg/php-ffmpeg": "^1.1",
"spatie/image-optimizer": "^1.6"
},
"require-dev": {
"hashids/hashids": "^5.0",
"league/flysystem-aws-s3-v3": "^3.0",
"orchestra/testbench": "^8.0.11|^9.0",
"pestphp/pest": "^2.2",
"pestphp/pest-plugin-laravel": "^2.0",
"spatie/pest-plugin-test-time": "^2.0"
},
"autoload": {
"psr-4": {
"Mostafaznv\\Larupload\\": "src/"
},
"files": [
"src/Helpers/Utils.php"
]
},
"autoload-dev": {
"psr-4": {
"Mostafaznv\\Larupload\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:ci": "vendor/bin/pest --coverage --coverage-text --coverage-clover=coverage.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Mostafaznv\\Larupload\\LaruploadServiceProvider"
]
}
}
}