forked from kevinpapst/AdminLTEBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.74 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
{
"name": "kevinpapst/adminlte-bundle",
"type": "symfony-bundle",
"description": "Admin theme bundle for Symfony 4 based on AdminLTE 2.4.8 with FOSUserBundle support",
"license": "MIT",
"authors": [
{
"name": "Kevin Papst",
"homepage": "https://www.kevinpapst.de"
},
{
"name": "Marc Bach",
"homepage": "http://www.avanzu.de"
},
{
"name": "Ángel Guzmán Maeso",
"homepage": "https://shakaran.net/blog"
}
],
"require": {
"php": "^7.1.3",
"symfony/config": ">4.1",
"symfony/dependency-injection": ">4.0",
"symfony/event-dispatcher" : ">4.3",
"symfony/http-foundation" : ">4.0",
"symfony/http-kernel" : ">4.0",
"symfony/options-resolver": ">4.0",
"symfony/security-core": ">4.0",
"twig/twig": ">2.0"
},
"require-dev": {
"phpspec/prophecy": "^1.6",
"symfony/framework-bundle" : ">4.0",
"friendsofphp/php-cs-fixer": "^2.10",
"phpunit/phpunit": "^7.3",
"phpstan/phpstan": "^0.11.8",
"knplabs/knp-menu-bundle": "^2.2",
"phpstan/phpstan-phpunit": "^0.11"
},
"suggest" : {
"knplabs/knp-menu-bundle" : "Allows easy menu integration",
"friendsofsymfony/user-bundle": "Allows easy user management and security support"
},
"autoload": {
"psr-4": { "KevinPapst\\AdminLTEBundle\\": "" }
},
"scripts": {
"tests": "vendor/bin/phpunit Tests/",
"phpstan": "vendor/bin/phpstan analyse . --level=5",
"codestyle": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "vendor/bin/php-cs-fixer fix"
}
}