-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathcomposer.json
74 lines (74 loc) · 2.17 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
{
"name": "plank/laravel-mediable",
"description": "A package for easily uploading and attaching media files to models with Laravel",
"keywords": [
"media",
"image",
"uploader",
"eloquent",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Sean Fraser",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"ext-fileinfo": "*",
"guzzlehttp/guzzle": "^7.9.1",
"guzzlehttp/psr7": "^2.7",
"illuminate/database": "^10.48.25|^11.34.0",
"illuminate/filesystem": "^10.48.25|^11.34.0",
"illuminate/support": "^10.48.25|^11.34.0",
"intervention/image": "^2.7.1|^3.9.1",
"league/flysystem": "^3.29.1",
"symfony/http-foundation": "^6.0.3|^7.2",
"symfony/mime": "^6.0|^7.2",
"spatie/image-optimizer": "^1.8"
},
"require-dev": {
"aws/aws-sdk-php": "^3.334.0",
"doctrine/dbal": "^3.9.3",
"guzzlehttp/promises": "^1.5.1",
"laravel/legacy-factories": "^1.4.0",
"league/flysystem-aws-s3-v3": "^3.29.0",
"mockery/mockery": "^1.6.12",
"orchestra/testbench": "^9.6.1",
"php-coveralls/php-coveralls": "^2.7.0",
"phpunit/phpunit": "^10.5.38",
"vlucas/phpdotenv": "^5.6.1",
"phpstan/phpstan": "^2.0.3"
},
"autoload": {
"psr-4": {
"Plank\\Mediable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Plank\\Mediable\\Tests\\": "tests/"
},
"classmap": [
"migrations/"
]
},
"suggest": {
"intervention/image-laravel": "Laravel bindings for the intervention/image package used for image manipulation"
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Plank\\Mediable\\MediableServiceProvider"
],
"aliases": {
"MediaUploader": "Plank\\Mediable\\Facades\\MediaUploader",
"ImageManipulator": "Plank\\Mediable\\Facades\\ImageManipulator"
}
}
}
}