-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
76 lines (75 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "moharrum/laravel-adminer",
"description": "Adminer database management tool for your Laravel application.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Khalid Moharrum",
"email": "[email protected]",
"homepage": "https://github.com/moharrum"
}
],
"homepage": "https://github.com/moharrum/laravel-adminer",
"keywords": [
"i18n",
"adminer",
"phpmyadmin",
"database",
"editor",
"mysql",
"mariadb",
"postgresql",
"sqlite",
"mssql",
"oracle",
"firebird",
"simpledb",
"elasticsearch",
"mongodb",
"database-hide",
"designs",
"dump-alter",
"dump-bz2",
"dump-date",
"dump-json",
"dump-xml",
"dump-zip",
"edit-foreign",
"edit-textarea",
"enum-option",
"enum-types",
"foreign-system",
"frames",
"json-column",
"slugify",
"sql-log",
"struct-comments",
"tables-filter",
"tinymce",
"translation",
"version-noverify",
"wymeditor",
"laravel",
"moharrum"
],
"require": {
"php": "^7.1",
"illuminate/support": "~5|~6|~7|~8"
},
"autoload": {
"psr-4": {
"Moharrum\\LaravelAdminer\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Moharrum\\LaravelAdminer\\Providers\\LaravelAdminerServiceProvider"
],
"aliases": {
}
}
}
}