-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
59 lines (59 loc) · 1.94 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
59
{
"name": "kevinpapst/tabler-bundle",
"type": "symfony-bundle",
"description": "Admin/Backend theme bundle for Symfony based on Tabler.io",
"license": "MIT",
"authors": [
{
"name": "Kevin Papst",
"homepage": "https://www.kevinpapst.de"
}
],
"require": {
"php": "^8.1",
"symfony/asset": "^6.0 || ^7.0",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"symfony/options-resolver": "^6.0 || ^7.0",
"symfony/security-core": "^6.0 || ^7.0",
"symfony/translation": "^6.0 || ^7.0",
"symfony/twig-bridge": "^6.0 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"symfony/framework-bundle" : "^6.0 || ^7.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"knplabs/knp-menu-bundle": "^3.0"
},
"suggest" : {
"knplabs/knp-menu-bundle" : "Allows easy menu integration"
},
"autoload": {
"psr-4": {
"KevinPapst\\TablerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KevinPapst\\TablerBundle\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/phpunit tests/",
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon src/",
"vendor/bin/phpstan analyse -c tests/phpstan.neon tests/"
],
"codestyle": "vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none",
"codestyle-fix": "vendor/bin/php-cs-fixer fix"
}
}