-
Notifications
You must be signed in to change notification settings - Fork 148
/
composer.json
48 lines (48 loc) · 1.45 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
{
"name": "avanzu/admin-theme-bundle",
"type": "symfony-bundle",
"description": "Admin Theme based on the AdminLTE Template for easy integration into symfony",
"license": "MIT",
"authors": [
{
"name": "Marc Bach",
"email": "[email protected]",
"homepage": "http://www.avanzu.de",
"role": "Original Author"
},
{
"name": "Ángel Guzmán Maeso",
"email": "[email protected]",
"homepage": "https://shakaran.net/blog",
"role": "Developer Collaborator"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.9",
"symfony/process": ">=2.3",
"symfony/options-resolver": ">=2.3",
"symfony/http-foundation" : ">=2.3",
"symfony/http-kernel" : ">=2.3",
"symfony/event-dispatcher" : ">=2.3",
"almasaeed2010/adminlte": "~2.3.0",
"symfony/console": ">=2.3"
},
"require-dev": {
"phpspec/prophecy": "^1.6"
},
"suggest" : {
"knplabs/knp-menu-bundle" : "Allows easy menu integration."
},
"autoload": {
"psr-4": { "Avanzu\\AdminThemeBundle\\": "" }
},
"scripts": {
"post-install-cmd": [
"Avanzu\\AdminThemeBundle\\Composer\\ScriptHandler::fetchThemeVendors"
],
"post-update-cmd": [
"Avanzu\\AdminThemeBundle\\Composer\\ScriptHandler::fetchThemeVendors"
]
}
}