contao-bootstrap / layout
Bootstrap layout integration in Contao
                                    Fund package maintenance!
                                                                            
                                                                                                                                        dmolineus
                                                                                    
                                                                            
                                                                                                                                        contao-bootstrap.de/mitmachen.html
                                                                                    
                                                                
Installs: 59 381
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 5
Open Issues: 4
Type:contao-bundle
pkg:composer/contao-bootstrap/layout
Requires
- php: ^8.1
 - contao-bootstrap/core: ^3.0
 - contao/core-bundle: ^4.13 || ^5.3
 - doctrine/dbal: ^3.3
 - netzmacht/contao-toolkit: ^3.9 || ^4.0
 - netzmacht/html: ^2.0.2 || ^3.0
 - symfony/config: ^5.4 || ^6.0
 - symfony/dependency-injection: ^5.4 || ^6.0
 - symfony/http-kernel: ^5.4 || ^6.0
 - twig/twig: ^3.1
 
Requires (Dev)
- contao/manager-plugin: ^2.0
 - doctrine/coding-standard: ^12.0
 - netzmacht/phpspec-phpcq-plugin: *@dev
 - phpcq/coding-standard: ^2.1.2
 - phpcq/runner-bootstrap: 1.x-dev
 - phpspec/phpspec: ^6.3.0 || ^7.0
 
Conflicts
- dev-master / 3.0.x-dev
 - 3.0.1
 - 3.0.0
 - dev-develop / 2.1.x-dev
 - 2.1.1
 - 2.1.0
 - 2.0.4
 - 2.0.3
 - 2.0.2
 - 2.0.1
 - 2.0.0
 - 2.0.0-beta4
 - 2.0.0-beta3
 - 2.0.0-beta2
 - 2.0.0-beta1
 - 2.0.0-alpha2
 - 2.0.0-alpha1
 - 1.0.2
 - 1.0.1
 - 1.0.0
 - 1.0.0-rc1
 - 1.0.0-beta3
 - 1.0.0-beta2
 - 1.0.0-beta1
 - dev-dependabot/github_actions/actions/upload-artifact-5
 - dev-support/2.x
 
This package is auto-updated.
Last update: 2025-10-27 04:35:01 UTC
README
This extension provides Bootstrap integration into Contao.
Contao-Bootstrap is a modular integration. The layout component allows to define a grid based layout using the backend layout editor.
Features
- Grid based layouts
 - Auto replace defined css classes
 - Auto replace image and table classes
 
Changelog
See changelog
Requirements
- PHP ^8.1
 - Contao ^4.13 || ^5.3
 
Install
Managed edition
When using the managed edition it's pretty simple to install the package. Just search for the package in the Contao Manager and install it. Alternatively you can use the CLI.
# Using the contao manager $ php contao-manager.phar.php composer require contao-bootstrap/layout ^3.0 # Using composer directly $ php composer.phar require contao-bootstrap/layout ^3.0
Symfony application
If you use Contao in a symfony application without contao/manager-bundle, you have to register following bundles manually:
class AppKernel { public function registerBundles() { $bundles = [ // ... new \ContaoCommunityAlliance\MetaPalettes\CcaMetaPalettesBundle(), new \Netzmacht\Contao\Toolkit\Bundle\NetzmachtContaoToolkitBundle(), new \ContaoBootstrap\Core\ContaoBootstrapCoreBundle(), new \ContaoBootstrap\Layout\ContaoBootstrapLayoutBundle(), ]; } }