-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "capevace/cabinet",
"description": "Cabinet is a turn-key file management solution for Laravel, that enables attaching files and folders to models, by integrating various file sources into a streamlined API and user interface.",
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Cabinet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cabinet\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Lukas Mateffy",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.15",
"illuminate/contracts": "^11.0 || ^10.0",
"ext-fileinfo": "*"
},
"extra": {
"laravel": {
"providers": [
"Cabinet\\CabinetServiceProvider"
],
"aliases": {
"Cabinet": "Cabinet\\Facades\\Cabinet"
}
}
}
}