-
Notifications
You must be signed in to change notification settings - Fork 348
/
composer.json
72 lines (72 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mopa/bootstrap-bundle",
"description": "Easy integration of twitters bootstrap into symfony2",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"form",
"extra form",
"bootstrap",
"bootstrap form",
"template"
],
"authors": [
{
"name": "Philipp A. Mohrenweiser",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/phiamo/MopaBootstrapBundle/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0",
"mopa/composer-bridge": "^1.3",
"symfony/console": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/form": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"twig/twig": "^2.9 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.4",
"symfony/security-bundle": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/translation-contracts": "^2.0"
},
"suggest": {
"craue/formflow-bundle": "~2.0",
"knplabs/knp-menu-bundle": "~3.0",
"knplabs/knp-paginator-bundle": "~2.3",
"mopa/bootstrap-sandbox-bundle": "~2.3",
"twbs/bootstrap": ">2.0,<4.0-dev",
"twbs/bootstrap-sass": "v3.1.1"
},
"autoload": {
"psr-4": {
"Mopa\\Bundle\\BootstrapBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"allow-plugins": {
"symfony/flex": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"post-install-cmd": [
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrap"
],
"post-update-cmd": [
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrap"
]
}
}