-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 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
{
"name": "tupy/filemanager",
"description": "Laravel File Manager Morph table",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aguinaldo Tupy",
"email": "aguinaldo.tupy@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-zip": "*",
"illuminate/auth": ">=7.30",
"illuminate/config": ">=7.30",
"illuminate/console": ">=7.30",
"illuminate/database": ">=7.30",
"illuminate/filesystem": ">=7.30",
"illuminate/http": ">=7.30",
"illuminate/routing": ">=7.30",
"illuminate/support": ">=7.30",
"intervention/image": ">=2.4",
"phpoffice/phpspreadsheet": ">=1.10"
},
"autoload": {
"psr-4": {
"Tupy\\FileManager\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"laravel": {
"providers": [
"Tupy\\FileManager\\FileManagerServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}