-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 819 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 819 Bytes
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
{
"name": "vizrex/laravel-db-utils",
"description": "This package provides command line utilities for database related operations like create, backup and restore.",
"type": "laravel-package",
"license": "proprietary",
"authors": [{
"name": "Vizrex",
"email": "laravel@vizrex.com"
}],
"minimum-stability": "dev",
"require": {
"vizrex/laraviz": "~1",
"benjamincrozat/laravel-dropbox-driver": "^2.0",
"jackiedo/dotenv-editor": "1.*",
"nao-pon/flysystem-google-drive": "~1.1"
},
"autoload": {
"psr-4": {
"Vizrex\\LaravelDbUtils\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Vizrex\\LaravelDbUtils\\LaravelDbUtilsProvider"
]
}
}
}