-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
34 lines (34 loc) · 910 Bytes
/
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
{
"name": "sbs/symfony-adminlte-bundle",
"description": "Symfony AdminLTE Integration Bundle",
"homepage": "https://github.com/koftikes/symfony-adminlte-bundle",
"keywords": ["symfony", "adminlte"],
"type": "symfony-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/koftikes/symfony-adminlte-bundle/issues"
},
"authors": [
{
"name": "Konstantin Litvinov",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"almasaeed2010/adminlte": "^3.0",
"symfony/symfony": "~3.4.35"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": { "SbS\\AdminLTEBundle\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}