-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.09 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.09 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dontdrinkandroot/bootstrap-bundle",
"description": "Symfony integrations for Bootstrap",
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Philip Washington Sorst",
"email": "philip@sorst.net",
"homepage": "https://sorst.net"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dontdrinkandroot\\BootstrapBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dontdrinkandroot\\BootstrapBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.5",
"dontdrinkandroot/common": "^0.3",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/translation": "^7.4",
"symfony/twig-bundle": "^7.4",
"twig/extra-bundle": "^3.20",
"twig/twig": "^3.20"
},
"require-dev": {
"doctrine/orm": "^3.6",
"dontdrinkandroot/symfony-version-enforcer": "^0.1",
"knplabs/knp-menu-bundle": "^3.7",
"knplabs/knp-paginator-bundle": "^6.10",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.5",
"symfony/browser-kit": "^7.4",
"symfony/css-selector": "^7.4",
"symfony/form": "^7.4",
"symfony/yaml": "^7.4",
"symfony/runtime": "^7.4"
},
"suggest": {
"knplabs/knp-menu-bundle": "For menu integration",
"knplabs/knp-paginator-bundle": "For pagination integration"
},
"extra": {
"symfony": {
"require": "7.4.*",
"allow-contrib": true
},
"branch-alias": {
"dev-main": "0.5.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dontdrinkandroot/symfony-version-enforcer": true,
"phpstan/extension-installer": true,
"symfony/runtime": true
}
}
}