-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.76 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.76 KB
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
{
"name": "vleap/laravel-medialibrary-pro",
"description": "Handle media in a Laravel app",
"keywords": [
"spatie",
"laravel-medialibrary-pro"
],
"homepage": "https://github.com/spatie/laravel-medialibrary-pro",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"illuminate/validation": "^10.0|^11.0|^12.0",
"spatie/laravel-medialibrary": "^11.0",
"symfony/mime": "^6.0|^7.0"
},
"require-dev": {
"illuminate/support": "^10.0|^11.0|^12.0",
"livewire/livewire": "^3.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"symfony/var-dumper": "^6.0|^7.0",
"pestphp/pest": "^2.0|^3.0"
},
"suggest": {
"livewire/livewire": "Allow uploads without using a front end framework"
},
"autoload": {
"psr-4": {
"Spatie\\MediaLibraryPro\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\MediaLibraryPro\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\MediaLibraryPro\\MediaLibraryProServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}