forked from spatie/laravel-medialibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
106 lines (106 loc) · 3.25 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "sedkitn/mongodb-laravel-medialibrary",
"description": "Associate files with Eloquent models (MongoDB)",
"license": "MIT",
"keywords": [
"sedkiTN",
"mongodb-laravel-medialibrary",
"mongodb",
"media",
"conversion",
"images",
"downloads",
"cms",
"laravel"
],
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
},
{
"name": "Sedki BEN ALI",
"email": "sedki_ben_ali@outlook.com",
"role": "Developer"
}
],
"homepage": "https://github.com/sedkiTN/mongodb-laravel-medialibrary",
"require": {
"php": "^8.1",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"illuminate/bus": "^9.18|^10.0",
"illuminate/conditionable": "^9.18|^10.0",
"illuminate/console": "^9.18|^10.0",
"illuminate/database": "^9.18|^10.0",
"illuminate/pipeline": "^9.18|^10.0",
"illuminate/support": "^9.18|^10.0",
"maennchen/zipstream-php": "^2.0|^3.0",
"mongodb/laravel-mongodb": "dev-master#25c73e2",
"spatie/image": "^2.2.7",
"spatie/temporary-directory": "^2.0",
"symfony/console": "^6.0"
},
"require-dev": {
"ext-imagick": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"aws/aws-sdk-php": "^3.133.11",
"doctrine/dbal": "^2.13",
"guzzlehttp/guzzle": "^7.4",
"league/flysystem-aws-s3-v3": "^3.0",
"mockery/mockery": "^1.4",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.21",
"phpstan/extension-installer": "^1.1",
"spatie/laravel-ray": "^1.28",
"spatie/pdf-to-image": "^2.1",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"conflict": {
"php-ffmpeg/php-ffmpeg": "<0.6.1"
},
"suggest": {
"league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage",
"php-ffmpeg/php-ffmpeg": "Required for generating video thumbnails",
"spatie/pdf-to-image": "Required for generating thumbnails of PDFs and SVGs"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"sedkiTN\\MediaLibrary\\": "src",
"Spatie\\Image\\": "vendor/spatie/image/src",
"Spatie\\TemporaryDirectory\\": "vendor/spatie/temporary-directory/src"
}
},
"autoload-dev": {
"psr-4": {
"sedkiTN\\MediaLibrary\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"sedkiTN\\MediaLibrary\\MediaLibraryServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/pest"
}
}