forked from kevinpapst/AdminLTEBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 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
{
"name": "kevinpapst/adminlte-bundle",
"type": "symfony-bundle",
"description": "Admin Theme based on the AdminLTE 2.3 for easy integration with Symfony 4",
"license": "MIT",
"authors": [
{
"name": "Marc Bach",
"homepage": "http://www.avanzu.de"
},
{
"name": "Ángel Guzmán Maeso",
"homepage": "https://shakaran.net/blog"
},
{
"name": "Kevin Papst",
"homepage": "https://www.kevinpapst.de"
}
],
"require": {
"php": "^7.1.3",
"symfony/config": ">3.4",
"symfony/dependency-injection": ">3.4",
"symfony/event-dispatcher" : ">3.4",
"symfony/http-foundation" : ">3.4",
"symfony/http-kernel" : ">3.4",
"symfony/options-resolver": ">3.4",
"symfony/security-core": ">3.4",
"twig/twig": ">2.0"
},
"require-dev": {
"phpspec/prophecy": "^1.6",
"friendsofphp/php-cs-fixer": "^2.10"
},
"suggest" : {
"knplabs/knp-menu-bundle" : "Allows easy menu integration",
"friendsofsymfony/user-bundle": "Allows easy user management and security support"
},
"autoload": {
"psr-4": { "KevinPapst\\AdminLTEBundle\\": "" }
}
}