forked from optixsolutions/laravel-media
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 847 Bytes
/
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
{
"name": "auresbug/media",
"license": "MIT",
"authors": [
{
"name": "Hector Anaya",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
"intervention/image": "^2.5"
},
"require-dev": {
"orchestra/testbench": "~3.8.6|^4.8|^5.2|^6.0",
"mockery/mockery": "^1.2.3",
"laravel/legacy-factories": "^1.0.4"
},
"autoload": {
"psr-4": {
"Auresbug\\Media\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Auresbug\\Media\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Auresbug\\Media\\MediaServiceProvider"
]
}
}
}