-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.45 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
{
"name": "2lenet/dashboard2-bundle",
"type": "symfony-bundle",
"description": "Dashboard bundle 2, widgets",
"keywords": ["dashboard"],
"license": "MIT",
"authors": [
{
"name": "HEITZMANN Sébastien",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"friendsofsymfony/jsrouting-bundle": "^2.2 || ^2.7 || ^3.0",
"doctrine/doctrine-bundle": "^2.10",
"doctrine/orm": "^2.10",
"symfony/security-bundle": "^6.0 || ^7.0",
"symfony/form": "^6.0 || ^7.0",
"twig/twig": "^3.0",
"symfony/ux-chartjs": "^2.0",
"symfony/dom-crawler": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Lle\\DashboardBundle\\": "src/"
}
},
"minimum-stability": "stable",
"require-dev": {
"symfony/maker-bundle": "^1.50",
"phpstan/phpstan": "*",
"phpstan/phpstan-doctrine": "*",
"phpstan/phpstan-mockery": "*",
"phpstan/phpstan-phpunit": "*",
"phpstan/phpstan-symfony": "*",
"phpstan/phpstan-deprecation-rules": "^1.1",
"ergebnis/phpstan-rules": "^2.1",
"phpunit/phpunit": "^10.3",
"phpstan/phpstan-strict-rules": "^1.5",
"slevomat/coding-standard": "^8.13",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}