-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
51 lines (51 loc) · 1.03 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
{
"name": "natanfelles/adminer-bootstrap-like",
"type": "project",
"description": "Adminer interface inspired by the Bootstrap Framework.",
"keywords": [
"adminer",
"database",
"bootstrap"
],
"homepage": "https://github.com/natanfelles/adminer-bootstrap-like",
"license": [
"Apache-2.0",
"GPL-2.0-only"
],
"authors": [
{
"name": "Natan Felles",
"email": "natanfelles@gmail.com"
}
],
"require": {
"php": ">=5.6",
"vrana/adminer": "^4.8",
"vrana/jush": "^2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0"
},
"autoload": {
"classmap": [
"src/AdminerBootstrapLike.php",
"plugins/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"php compile.php",
"composer dump-autoload --optimize"
],
"post-update-cmd": [
"php compile.php",
"composer dump-autoload --optimize"
]
},
"support": {
"issues": "https://github.com/natanfelles/adminer-bootstrap-like/issues",
"source": "https://github.com/natanfelles/adminer-bootstrap-like"
}
}