This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
composer.json
58 lines (58 loc) · 1.86 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
54
55
56
57
58
{
"name": "kevinpapst/adminlte-bundle",
"type": "symfony-bundle",
"description": "Admin theme bundle for Symfony 4+ based on AdminLTE 2.4 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/asset": ">4.3",
"symfony/config": ">4.3",
"symfony/dependency-injection": ">4.3",
"symfony/event-dispatcher": ">4.3",
"symfony/http-foundation": ">4.3",
"symfony/http-kernel": ">4.3",
"symfony/options-resolver": ">4.3",
"symfony/security-core": ">4.3",
"symfony/translation": ">4.3",
"symfony/twig-bridge": ">4.3",
"twig/twig": ">2.0"
},
"require-dev": {
"phpspec/prophecy": "^1.6",
"symfony/framework-bundle" : ">4.3",
"friendsofphp/php-cs-fixer": "^2.10",
"phpunit/phpunit": "^7.3",
"phpstan/phpstan": "^0.12",
"knplabs/knp-menu-bundle": "^2.2",
"phpstan/phpstan-phpunit": "^0.12"
},
"suggest" : {
"knplabs/knp-menu-bundle" : "Allows easy menu integration"
},
"autoload": {
"psr-4": { "KevinPapst\\AdminLTEBundle\\": "" }
},
"scripts": {
"tests": "vendor/bin/phpunit Tests/",
"phpstan": [
"vendor/bin/phpstan analyse . --level=5",
"vendor/bin/phpstan analyse -c Tests/phpstan.neon Tests --level=5"
],
"codestyle": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "vendor/bin/php-cs-fixer fix"
}
}